如果 url 不以 / 结尾,则将其重定向到 $1/

发布于 2024-12-09 05:08:16 字数 404 浏览 0 评论 0原文

我想要的其实很简单。我基本上想做以下事情。

如果用户打开

http://www.mysite.com/somecategory/somedata

然后将用户重定向到

http://www.mysite.com/somecategory/somedata/

即添加一个

/
at the end of the url.

我已经通过 .htaccess 解决了这个问题,但它仍然不起作用。这是代码

RewriteEngine on
RewriteCond %{REQUEST_URI} [^/]$
RewriteRule ^(.*)$ http://localhost/thing

What i want is real simple. I basically want to do following.

If user opens up

http://www.mysite.com/somecategory/somedata

Then redirect the user to

http://www.mysite.com/somecategory/somedata/

i.e adding a

/

at the end of the url.

I've came to figured it out through the .htaccess, but still it is not working. Here's the code

RewriteEngine on
RewriteCond %{REQUEST_URI} [^/]$
RewriteRule ^(.*)$ http://localhost/thing

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

最单纯的乌龟 2024-12-16 05:08:17

将最后一行更改为:

RewriteRule ^(.*)$ http://localhost/$1/

应该可以。

编辑:您可能还应该添加第二个条件,以便不会重写对现有静态文件的请求(即 index.html 不会变成 index.html /):

RewriteCond %{REQUEST_URI} [^/]$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ http://localhost/$1/

Changing the last line to:

RewriteRule ^(.*)$ http://localhost/$1/

should do it.

Edit: You should probably also add a second condition so that requests for existing static files are not rewritten (i.e. index.html doesn't turn into index.html/):

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