我应该使用什么RewriteRule(使用.htaccess/ mod_rewrite)来重定向http://example.com/blog/(有www或没有)http://blog.example.com/?
我正在使用以下内容,但获得重定向循环:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/blog/ [L,R=301]
RewriteCond %{HTTP_HOST} www\.example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/blog/ [L,R=301]
Run Code Online (Sandbox Code Playgroud)