我是301使用此代码重定向从for q in qs:
q.delete()
到http://something.org/*
的所有内容...
https://something.com/*
我正在尝试添加此网址<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) https://www.something.com/$1 [R=301,L]
</IfModule>
重定向到http://something.org/registration/service
的异常(不像通用规则那样的HTTPS)。试图将此网址从一般规则中排除并且它可以正常运行,但我不知道如何添加规则以将此排除重定向到其他内容:
http://www.something.com/registration/service
答案 0 :(得分:1)
用这个替换你的RewriteCond:
RewriteRule ^registration/service http://example.com%{REQUEST_URI} [NE,L,R]