我想将我的网址从 www.example.com/images/ 重定向到 static.example.com/img / 的
> RewriteCond %{HTTP_HOST} ^www.example.com/images/$ [NC]
> #RewriteRule ^(.*)$ http://static.example.com/img/$1 [L,R=301]
但是我得到了太多的500内部服务器错误。我该怎么办?
答案 0 :(得分:0)
您只能使用%{HTTP_HOST}
变量匹配主机名。
您需要使用:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^images/(.+)$ http://static.example.com/img/$1 [L,R=301]