最奇怪的事情。两个重写规则都在我们的测试服务器上运行,但第二个规则locations在生产服务器上不起作用,并且由于某种原因/在末尾添加了一个locations/。两台服务器上的配置相同。
我正在尝试简化 URL,而不重命名文件。这样,如果用户输入,site.php/locations它将加载重定向页面的内容,但保留简化的 URL
关于为什么locations重定向不起作用的任何想法?
RewriteEngine on
RewriteBase /
// The next two are statements are just for context. They preceded the faq and locations forward
RewriteCond %{REQUEST_URI} ^/index.php$
RewriteRule (.*) / [R=301,L]
// The two rewrites that I want
RewriteRule ^faq$ /faq-mailbox-account.php [NC,L]
RewriteRule ^locations$ /choose-digital-mailbox-location.php [NC,L]
qq_花开花谢_0
德玛西亚99