0

我如何在不更改 url的情况下重定向所有子域

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

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

重定向到

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

4

1 回答 1

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

于 2013-02-01T13:38:38.870 回答