apache htaccess - 尾部斜杠和单个入口点
我的应用程序需要一个入口点 - index.php。 之前,我曾经有这样的代码行:
RewriteRule ^(.*)$ /index.php [L]
现在,我需要强制尾随斜杠。我发现我可以使用这样的行:
RewriteRule ^(.*)$ http://%{HTTP_HOST} /$1/ [L,R=301]
但我想知道,如何才能让它同时工作。
I need to have one entry point for my application - index.php.
Before, i used to have such line of code:
RewriteRule ^(.*)$ /index.php [L]
Now, i need to force trailing slashes. I found out, that I can use such line:
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [L,R=301]
But I want to know, how can I make it work both together.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试类似
或
try something like
or