Yii2从url中删除index.php

前端之家收集整理的这篇文章主要介绍了Yii2从url中删除index.php前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在Yii中设置选项以从URL中删除index.PHP时,我收到404错误,并且错误日志中的此错误文件不存在:/ var / live / var.在我的浏览器中,我收到此错误在此服务器上找不到请求的URL /var/decat/frontend/web/index.PHP.但该文件正好在该位置.可以解释的是,我的文档根目录是/ var / live,decat是一个别名,如conf文件中所示.

这个网址工作正常http://130.211.165.180/decat/index.php/site/login,但当我删除index.PHP时,我收到错误.我按照所有说明在conf文件中进行设置.我甚至尝试过.htaccess文件.这是我的conf文件中的信息.

Alias /decat /var/decat/frontend/web

<Directory "/var/decat/frontend/web">
        # use mod_rewrite for pretty URL support
        RewriteEngine on
        # If a directory or a file exists,use the request directly
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        # Otherwise forward the request to index.PHP
        RewriteRule . index.PHP 
        Options -Indexes FollowSymLinks 
        AllowOverride All
        Order allow,deny 
        Allow from all 
</Directory>
在RewriteEngine之后添加RewriteBase / decat /并重新启动apache.
原文链接:https://www.f2er.com/php/134546.html

猜你在找的PHP相关文章