【发布时间】:2014-02-15 05:37:35
【问题描述】:
我有一个这样的子域:
Example: http://us.example.com/index.php?city=newyork
我该如何重写:
http://us.example.com/newyork
“us”是一个虚拟子域。所以,它可以是不同的:我们、fr、it 等等。
我用这种方法试过了,但是不行
RewriteEngine on
RewriteCond %{HTTP_HOST} !^example\.com
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*) index.php?city=$1
【问题讨论】:
-
我希望这个链接对你有帮助[链接][1] [1]:stackoverflow.com/questions/3374696/htaccess-url-redirect
标签: php .htaccess mod-rewrite subdomain