我会在我的新项目中使用CodeIgniter,但我只使用辅助函数,所以 我可以将我的php脚本作为CodeIgniter restful Url函数运行,但不能在MVC中运行吗?
或者我可以通过Apache重写mod来完成吗?
答案 0 :(得分:1)
在.htaccess
文件中,您可以使用以下内容:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1 [PT]
然后您可以使用http://yoursite.com/whatever
,$_GET['page']
将等于whatever
。