如何忽略重定向中的 URL?

发布于 2024-12-12 08:08:43 字数 329 浏览 0 评论 0原文

我的商店中有以下重定向:

Options +FollowSymLinks 
RewriteEngine on

RewriteCond %{HTTP_HOST} ^www.mydomain.net$ [NC]
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [R=301,L]

但是,我想忽略
的重定向 www.mydomain.net/admin

因为它是我的后端来管理我的商店,但现在由于我设置的 URL 重定向,我无法访问我的管理员。

知道如何做到这一点吗?

I have the following redirect in my store:

Options +FollowSymLinks 
RewriteEngine on

RewriteCond %{HTTP_HOST} ^www.mydomain.net$ [NC]
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [R=301,L]

However, I want to ignore the redirection for
www.mydomain.net/admin

because its my backend to manage my store and now I cant access my admin because of the URL redirection I set.

Any idea how to do this?

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

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

发布评论

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

评论(1

所有深爱都是秘密 2024-12-19 08:08:43

应该很容易将您的行反转为否定语句,以便它适用于与您不想重写的路径不匹配的所有内容:

RewriteRule !^(admin/.*)$ http://www.mydomain.com/$1 [R=301,L]

或更佳的是添加另一个重写条件以排除管理目录:

RewriteCond %{REQUEST_URI} !^/admin [NC]

它们都应该工作,但第二个看起来更好。

Should be easy enough to just reverse your line to a negation statement so that it applies to everything that does not match the paths you don't want to rewrite:

RewriteRule !^(admin/.*)$ http://www.mydomain.com/$1 [R=301,L]

or more preferably just add another rewrite conditional to exclude the admin directory:

RewriteCond %{REQUEST_URI} !^/admin [NC]

They both should work but the second one looks nicer.

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