我正在使用.htaccess
'RewriteRule
将 url 重定向到客户端的正确页面,一切正常,除了重写单词目录!我收到 403 禁止错误。
这是我的代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^catalogue$ /catalogue.php
</IfModule>
这导致:
现在,让我发疯的是,如果我将代码切换到RewriteRule ^catalog$ /catalogue.php
或RewriteRule ^cataloguee$ /catalogue.php
浏览到相应的 url,页面显示没有错误。
任何想法为什么会发生这种情况?