如何忽略重定向中的 URL?
我的商店中有以下重定向:
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 forwww.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该很容易将您的行反转为否定语句,以便它适用于与您不想重写的路径不匹配的所有内容:
或更佳的是添加另一个重写条件以排除管理目录:
它们都应该工作,但第二个看起来更好。
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:
or more preferably just add another rewrite conditional to exclude the admin directory:
They both should work but the second one looks nicer.