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