在 URL 中添加尾部斜杠
添加尾部斜杠 .htaccess 有不少结果 在 Google 上,但我发现的所有示例都需要使用您的域名,如下例所示:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !example.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301]
我的问题是硬编码的域名无法在我的本地开发计算机上运行。有没有办法在不明确告诉 mod_rewrite 域名的情况下添加尾部斜杠?
There are quite a few results for add trailing slash .htaccess on Google, but all examples I found require the use of your domain name, as in this example:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !example.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301]
My problem is that a hard-coded domain name will not work on my local development machine. Is there a way to add trailing slashes without explicitly telling mod_rewrite the domain name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要指定域,只需使用绝对 URL 路径即可:
这也使得对 URL 方案的检查变得过时。
You don’t need to specify the domain, you can simply use an absolute URL path:
That does also make a check for the URL scheme obsolete.
这应该有效:
This should work: