提问者:小点点

从zend框架1.12中的url中删除index.php


删除此索引时遇到问题。php使用上述所有解决方案。有人能帮忙吗。我的系统配置是ubuntu 14.04,我使用的是zend framework 1.12。

我的。htaccess文件已被删除


    RewriteEngine On
    RewriteBase /Reports_Century/public/

    RewriteCond %{REQUEST_FILENAME} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]

    RewriteRule ^(.+)$ index.php [L]

用于删除索引的任何其他设置。php来自URL?


共1个答案

匿名用户

尝试使用以下代码:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !(\.wav)$
RewriteRule ^.*$ index.php [NC,L]
RewriteRule !\.(js|ico|txt|gif|jpg|png|css|otf|ttf)$ index.php