如果我要将内容从www.mysite.com/subdirectory/image.jpg
重定向到www.myothersite.com/image.jpg
但是我当前的.htaccess会重定向www.myothersite.com/subdirectory/image.jpg
这样的内容
RewriteEngine On
RewriteRule \.(css|js|webp)$ http://myothersite.com%{REQUEST_URI} [NC,R=301,L]
答案 0 :(得分:1)
您可以在/subdirectory/.htaccess
中使用此规则:
RewriteEngine On
RewriteRule ^.+\.(css|js|webp|jpe?g)$ http://myothersite.com/$0 [NC,R=301,NE,L]
%{REQUEST_URI}
代表完整的URI,但$0
在subdirectory/
之后将具有URI部分