htaccess 需要重写帮助,url /123 到 /123/

发布于 2024-08-22 19:35:18 字数 503 浏览 2 评论 0原文

目前,我们已将重写配置为使网址如下:/wallpaper/123,但希望重写为/wallpaper/123/

问题:

我需要将现有链接正确地从“/wallpaper/123”重定向到“/wallpaper/123” /”

当前 htaccess:

Options +FollowSymLinks
Options -MultiViews

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.tvoioboi.com
RewriteRule (.*) http://tvoioboi.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

非常感谢任何帮助。

Currently we have rewrite configured to make urls like: /wallpaper/123 but would instead like the rewrite to /wallpaper/123/

Problem:

I need the existing links to be redirected properly from "/wallpaper/123" to "/wallpaper/123/"

Current htaccess:

Options +FollowSymLinks
Options -MultiViews

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.tvoioboi.com
RewriteRule (.*) http://tvoioboi.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

Any help greatly appreciated.

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

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

发布评论

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

评论(1

命硬 2024-08-29 19:35:18

尝试一些类似的事情......

RewriteRule (.+)[^/]*$ $1/

Try something along the lines of...

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