我想在此之后重写所有地址
http://www.mydomain.com/questions/*
到这个
http://*.mydomain.com/
例如:
http://www.mydomain.com/questions/example
http://example.mydomain.com/
任何人都可以帮我解决这个问题!?
感谢
答案 0 :(得分:3)
你去。
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.mydomain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^.mydomain\.com$
RewriteRule ^questions/([^/]+)/?$ http://$1.mydomain.com/ [NC,R=301,L]
将它插入你的.htaccess文件,你应该好好去。 :)