作者:手机用户2502895475 | 来源:互联网 | 2023-10-11 14:41
这篇文章将为大家详细讲解有关Yii如何隐藏URL中index.php,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
本文实例讲述了Yii隐藏URL中index.php的方法。分享给大家供大家参考,'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>false,
'rules'=>array(
'/'=>'/view',
'//'=>'/',
'/'=>'/',
),
),
二、修改网站根目录下.htaccess文件内容如下:
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
关于“Yii如何隐藏URL中index.php”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。