PHP包括不同的目录

时间:2017-02-22 16:17:02

标签: php html css include relative-path

我有一个具有这种结构的网站:

  • / ROOT DIRECTORY /
    • 产品/
      • products.php
  • CSS /

    • 的style.css
  • 的index.php

所以这就是问题所在:index.php将style.css与相对路径链接起来就像这样“../CSS/style.css”

和products.php包括index.php使用include“../index.php”
但是css没有被包含,因为NOW index.php与products.php在同一个文件夹中,所以相对路径不起作用!!
是否有任何解决方案是绝对路径的一部分,因为我不希望人们知道我的项目的结构 如果没有,你可以给我绝对路径,或者我能以某种方式隐藏用户的绝对路径

祝你早日感谢

1 个答案:

答案 0 :(得分:1)

尝试使用以下语法:

Route::get(route('login'));