我正在使用Apache 2.4.7和PHP 5.5.10
我的文件夹树是:
C:\Apache24\htdocs\
--> lib-company
--> styles
--> xxx.css
--> js
--> xxx.js
--> site
--> index.php
在文件“httpd.conf”我将DocumentRoot设置为“c:/ Apache24 / htdocs / site”所以 当我在浏览器中输入“localhost”时,执行“index.php”。
在我的“index.php”中我:
<!-- styles -->
<link rel="stylesheet" type="text/css" href="../lib-company/styles/xxx.css"/>
<!-- scripts -->
<script type="text/javascript" src="../lib-company/js/xxx.js"></script>
问题是:我在两个文件中都收到错误'404(Not Found)
GET http://localhost/lib-company/styles/xxx.css 404 (Not Found)
GET http://localhost/lib-company/js/xxx.js 404 (Not Found)
我正在寻找如何允许在不改变网站结构的情况下进入层次结构。