我的域名中有一个名为video.php的文件,但希望它在我的子域名中。
现在就像www.domain.com/video.php?id=parameter&fewotherparamer=1233
我希望将其更改为
video.domain.com/video.php?id=parameter&fewotherparamer=1233
这怎么可能?我已经尝试在这里找到使用谷歌和搜索功能,但没有找到重点。
由于
答案 0 :(得分:2)
将这些指令添加到domain.com根目录(或虚拟主机配置)中的.htaccess文件中,并确保启用了mod_rewrite模块
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?domain.com$ [NC]
RewriteRule ^video.php$ http://video.domain.com/video.php [R=301,NC,L ]