如何重写 URL,所以当我输入
http://mydomain.com/index.php
是相同的
http://mydomain.com/subdomain/index.php
如何重写 URL,所以当我输入
http://mydomain.com/index.php
是相同的
http://mydomain.com/subdomain/index.php
如果您只想处理,index.php
那么以下将起作用:
RewriteEngine On
RewriteRule ^(index\.php|)$ subdomain/$1 [L]
但是,如果您想重定向每个请求subdomain folder
,那么以下将起作用:
RewriteEngine On
RewriteRule ^(?!subdomain/).*$ subdomain%{REQUEST_URI} [L,NC]
对于所有文件
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.+)$ /subdomain/$1 [NC]