如何使用.htaccess重定向

时间:2013-12-02 22:13:23

标签: .htaccess

我有一个像这样的文件夹结构:

apps:
   public
       test/index.php

现在我希望网址localhost/apps/test指向localhost/apps/public/test/index.php,我应该怎么做?我应该使用.htaccess文件吗?

1 个答案:

答案 0 :(得分:0)

在您的apps文件夹中,将其添加到htaccess文件的顶部:

RewriteEngine On
RewriteRule ^test$ /apps/public/test/index.php [L]

如果您确实想要重定向浏览器(例如更改网址地址栏中的内容),请在方括号中添加R[L,R]

相关问题