使用CakePHP漂亮URL时,从URL中删除index.php

时间:2016-11-02 22:20:25

标签: .htaccess cakephp routing

我想从网址http://mywebsite/index.php/中删除index.php。 我正在使用CakePHP漂亮的URL,我删除了所有的.htaccess文件:

/.htaccess
/app/.htaccess
/app/webroot/.htaccess

并取消注释core.php上的App.baseUrl。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

你可以试试这个。我一直在使用这个代码,我觉得这也适合你。

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [QSA,L,NC]
你不想用htaccess哦? 。我误解了你的问题。

相关问题