PHP + CodeIgniter,没有MVC的RestFul Url?

时间:2010-09-26 16:47:17

标签: php codeigniter

我会在我的新项目中使用CodeIgniter,但我只使用辅助函数,所以 我可以将我的php脚本作为CodeIgniter restful Url函数运行,但不能在MVC中运行吗?

或者我可以通过Apache重写mod来完成吗?

1 个答案:

答案 0 :(得分:1)

如果您不需要使用CodeIgniter,那么Apache重写会更合适。

.htaccess文件中,您可以使用以下内容:

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php?page=$1 [PT]

然后您可以使用http://yoursite.com/whatever$_GET['page']将等于whatever