重定向所有子域并使用get发送请求文件

时间:2013-02-01 13:00:13

标签: php .htaccess

我如何重定向所有子域名而不更改网址

aslo使用 GET 方法将子域请求文件发送到index.php文件, 与.htaccess 例如

http://testsubdomain.mysite.ir/test.php

重定向到

http://mysite.ir/users/index.php?domain=testsubdomain&file=test.php

1 个答案:

答案 0 :(得分:1)

使用mod_rewrite。例如:

RewriteEngine On
RewriteBase /testsubdomain/
RewriteRule ^(.*)\.php$  http://mysite.ir/users/index.php?domain=testsubdomain&file=$1.php

详细信息:http://httpd.apache.org/docs/current/mod/mod_rewrite.html