apache htaccess - 尾部斜杠和单个入口点

发布于 2024-12-02 23:49:15 字数 280 浏览 4 评论 0原文

我的应用程序需要一个入口点 - 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

再可℃爱ぅ一点好了 2024-12-09 23:49:15

尝试类似

RewriteRule ^(.*)$ /index.php/$1 [L]

RewriteRule ^(.*)$ http://%{HTTP_HOST}/index.php/$1/ [L]

try something like

RewriteRule ^(.*)$ /index.php/$1 [L]

or

RewriteRule ^(.*)$ http://%{HTTP_HOST}/index.php/$1/ [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文