【发布时间】:2014-05-14 08:30:08
【问题描述】:
我尝试将所有文件和文件夹重定向到 index.php 以进行 MVC 路由,但它只能从 index.php 像 learn.delapiata.ro/index.php/i/can/put/anything/here/and/redirect 一样工作
我希望在没有index.php 的情况下工作:learn.delapiata.ro/controllers/any_php_file.php
我在.htaccess使用这个:
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ /index.php [L]
谢谢。
【问题讨论】:
标签: php .htaccess mod-rewrite redirect