我想将我的网页从 mydomain.com/everything 重定向到 everything.mydomain.com ,是否有可能?
这样的东西,但有任何单词
#if not already blog.website.com
RewriteCond %{HTTP_HOST} !^blog\.website\.com$ [NC]
#if request is for blog/, go to blog.website.com
RewriteRule ^blog/$ http://blog.website.com [L,NC,R=301]
答案 0 :(得分:0)
RewriteRule ^([a-zA-Z0-9_]+)/$ http://$1.example.com [L,NC,R=301]
如果您愿意,可以更改表达式以匹配任何内容,但这至少可以让您了解。