我需要重写
使用.htaccess
答案 0 :(得分:1)
试试这个:
RewriteCond %{HTTP_HOST} ^site.com$
RewriteCond %{REQUEST_URI} ^/blog.php$
RewriteCond %{QUERY_STRING} ^blogger=(.*)$
RewriteRule .* http://%1.site.com [L,R=301]
RewriteCond %{HTTP_HOST} ^site.com$
RewriteCond %{REQUEST_URI} ^/blog.php$
RewriteCond %{QUERY_STRING} ^blogger=(.*)&content=(.*)&page=(.*)$
RewriteRule .* http://%1.site.com/%2/%3 [L,R=301]