apache重写控制器目录的规则

时间:2011-08-12 20:25:16

标签: php apache model-view-controller mod-rewrite controller

我有控制器目录,其中是控制器文件。

我想这样做

  

sitename.com/test.php

     

     

sitename.com/controller/test.php

如何用apache重写规则?

1 个答案:

答案 0 :(得分:3)

您需要在mod_rewrite

中查看.htaccess

在.htaccess中添加重写规则很简单。首先,通过将此行添加到.htaccess:

来激活mod_rewrite
RewriteEngine on
RewriteBase /

然后添加您的规则以重定向您的网页:

RewriteRule ^([^/]+)$ /controller/$1