htaccess mod rewrite 需要重写

发布于 2024-12-13 11:44:03 字数 241 浏览 0 评论 0原文

mydomain.ru 重定向到 mydomain.ru/rus

如果我写:

RewriteCond %{HTTP_HOST} !^mydomain\.ru/rus/$ [NC]
RewriteRule ^(.*)$ http://mydomain.ru/rus/$1 [R=301,L]

当我有无限的重定向时。有什么想法吗?

To redirect mydomain.ru to mydomain.ru/rus.

If I write:

RewriteCond %{HTTP_HOST} !^mydomain\.ru/rus/$ [NC]
RewriteRule ^(.*)$ http://mydomain.ru/rus/$1 [R=301,L]

When I have an endless redirect. Any ideas?

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

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

发布评论

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

评论(1

黎夕旧梦 2024-12-20 11:44:04

在这两种情况下,主机都是 mydomain.ru,这就是为什么你会得到无尽的重定向
试试这个:

RewriteCond %{REQUEST_URI} !^/rus/
RewriteRule ^(.*)$ rus/$1

这将检查您当前是否正在浏览 rus 文件夹中的某些内容,如果没有,则将您重定向到该子文件夹

Host will in both cases be mydomain.ru, that's why you will get the endless redirecting
Try this instead:

RewriteCond %{REQUEST_URI} !^/rus/
RewriteRule ^(.*)$ rus/$1

This will check wether or not you are currently browsing something in the rus folder, and if not, redirect you to that subfolder

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