关于这个主题似乎没有太多信息,所以我将概述我的具体问题,然后也许我们可以将问题和答案塑造成更普遍的东西。
我有这个重写规则
RewriteEngine On
RewriteBase /bookkeepers/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/?$ index.php?franchise=$1
这是更改此 URL
http://example.com/location/kings-lynn
进这个
http://example.com/location/index.php?franchise=kings-lynn
我遇到的问题是,如果我添加一个斜杠
http://example.com/location/kings-lynn/
然后查询字符串返回为
franchise=kings-lynn/
由于某种原因,我的 CSS 和 Javascript 文件都没有被加载。
有任何想法吗?