我有一个像这样的文件夹结构:
apps:
public
test/index.php
现在我希望网址localhost/apps/test
指向localhost/apps/public/test/index.php
,我应该怎么做?我应该使用.htaccess文件吗?
答案 0 :(得分:0)
在您的apps文件夹中,将其添加到htaccess文件的顶部:
RewriteEngine On
RewriteRule ^test$ /apps/public/test/index.php [L]
如果您确实想要重定向浏览器(例如更改网址地址栏中的内容),请在方括号中添加R
:[L,R]