我知道关于这个主题有 5 个问题,我已经通过了所有这些问题,但找不到任何答案。我今天刚开始重写 URL,所以我很新(而且不擅长),这就是我所拥有的
根文件夹
index.php
.htaccess
-scripts
script.js
jquery.js
-styles
style.css
.htaccess 文件夹
(url= index.php?catID=1 URLREWRITE = index/1)
RewriteEngine on
RewriteRule ^/?index/([0-9]+)$ index.php?catID=$1
索引.php
<script src="/scripts/jquery.js"></script>
<script src="/scripts/script.js"></script>
<link rel="stylesheet" type="text/css" href="/styles/style.css">
错误
GET http://localhost/scripts/jquery.js net::ERR_ABORTED 404 (Not Found)
//This one multiple times for every script/css i have
如您所见,它试图在脚本之前添加 / 但这并没有改变任何东西。我真的不需要一个聪明的答案,我唯一需要的是替换 url,就像你在 .htaccess 文件夹中看到的那样。
非常感谢
米琪卡哇伊