我有一个由两个链接的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/
,但仍然连接了两个应用程序admin
和client
。
我使用localhost/test/admin/
访问管理应用程序,并且希望保持这种状态。