1

我有一台带有 IP 地址的服务器(比如说)w.x.y.z,并在其上停放了 2 个域。

mydomain.com

herdomain.com

我也有 3 个文件管理器(免费的 php autoindex),如下所示:

mydomain.com/Files/index.php?dir=folder1/folder2/

herdomain.com/myfiles/index.php?dir=mydata/folder2/

现在我想将打开folder2(从上述网址之一)的用户重定向到此网址而不更改域(是否可能)?

w.x.y.z/support/index.php?dir=mainfolder/folder2/

我怎样才能在自动索引或上做到这一点.htaccess

谢谢

4

1 回答 1

1

将此添加到您.htaccess的网络根目录“/”

RewriteEngine on
RewriteBase /

RewriteCond %{HTTP_HOST} ^(mydomain|heredomain)\.com$ [NC]
RewriteCond %{QUERY_STRING} dir=(folder1|mydata)/folder2/ [NC]
RewriteRule ^(.*)$ http://w.x.y.z/support/index.php?dir=mainfolder/folder2/ [L]
于 2013-08-09T12:54:20.083 回答