.htaccess将所有内容重定向到新域,除了一个不同的URL

时间:2017-02-14 08:49:01

标签: apache .htaccess redirect mod-rewrite

我是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

1 个答案:

答案 0 :(得分:1)

用这个替换你的RewriteCond:

RewriteRule ^registration/service http://example.com%{REQUEST_URI} [NE,L,R]