如何从目录重定向到子目录,但如何将该子目录隐藏在地址栏中

时间:2019-01-28 14:05:38

标签: apache .htaccess

我有一个由两个链接的PHP应用程序组成的网站localhost/test/
localhost/test/admin/
localhost/test/client/

我想在浏览器的地址栏中键入localhost/test以打开localhost/test/client/,但要隐藏/client/,例如。在地址栏中只能看到localhost/test/。 我将.htaccess文件放置到目录/xampp/apps/test/中,其中包含文本:
    RedirectMatch ^/test/$ /test/client/
重定向有效,但我仍然看到localhost/test/client/

我已经具有网站主要目录的配置:

Alias /test "/xampp/apps/test/"
<Directory /xampp/apps/test/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>

如何从地址栏中隐藏/client/

我想输入localhost/test,打开localhost/test/client/,但仍然连接了两个应用程序adminclient
我使用localhost/test/admin/访问管理应用程序,并且希望保持这种状态。

0 个答案:

没有答案