-1

我的域上有一个名为 video.php 的文件,但希望它在我的子域中。

现在就像www.domain.com/video.php?id=parameter&fewotherparamer=1233

我想把它改成

video.domain.com/video.php?id=parameter&fewotherparamer=1233

这怎么可能?我已经尝试在这里使用谷歌和搜索功能找出答案,但没有找到重点。

谢谢

4

1 回答 1

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 ]
于 2013-03-26T14:13:08.157 回答