请求: site.ru/index.php?go=23&page=bla 改变形式: bla.site.ru/index.php?go=23
也就是说,用户在浏览器 bla.site.ru/index.php?go=23 中输入内容,所有信息都会传递给请求 site.ru/index.php的脚本?去= 23&安培;页= BLA
禁止使用重定向
答案 0 :(得分:2)
试试这个:
RewriteCond %{HTTP_HOST} ^([^.]+)\.example\.com$
RewriteRule ^ http://example.com%{REQUEST_URI}?page=%1 [L,QSA]