我如何在不更改 url的情况下重定向所有子域
aslo使用GET方法将子域和请求文件发送到 index.php 文件,例如使用 .htaccess
http://testsubdomain.mysite.ir/test.php
重定向到
http://mysite.ir/users/index.php?domain=testsubdomain&file=test.php
我如何在不更改 url的情况下重定向所有子域
aslo使用GET方法将子域和请求文件发送到 index.php 文件,例如使用 .htaccess
http://testsubdomain.mysite.ir/test.php
重定向到
http://mysite.ir/users/index.php?domain=testsubdomain&file=test.php
使用 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