我们将example1.com重定向到example2.com - 这有效(也强制执行ssl)。
但是我们有很多关于example1.com/dir/subdirectory形式的链接,需要转到example2.com/dir/differentsubdirectory。
Redirect "/skill-catalog" "/catalog"
and
RewriteRule ^/home/skill-catalog/(.*)$ /home/catalog/$1 [R,L]
我已经尝试了各自,但都不起作用。我做错了什么,或者我错过了他们需要的订单?在worddpress的htacess文件或者我目前正在做什么 - 在httpd conf文件中,这会更容易吗?
答案 0 :(得分:0)
请尝试以下规则:
RewriteRule ^/home/skill-catalog/(.*)$ https://example2.com/home/catalog/$1 [R,L]