Yii 1.0 伪静态即Yii配置Url重写

今天学习那个yii的时候,觉得URL太麻烦,想自己配置一下,于是就百度了一下,然后自己总结下,留着后面配置的时候看看。


yii框架中有个很重要的组件:URL Management(网址管理)


进行yii伪静态就是只需要配置这个就可以了。


没有配置之前是这个样子的:



配置成功后的URL就是这样的:



第一步:配置URL Management(网址管理)


只需要在config文件夹下面的main.php文件中进行配置就好了


'components' => array(
        'urlManager' => [
            'showScriptName' => false,//这里是隐藏index.php那个路径的
            'urlFormat' => 'path',
            'rules' => [
                '<controller:\w+>/<id:\d+>' => '<controller>/view',
                '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
                '<controller:\w+>/<action:\w+>' => '<controller>/<action>'
            ]
        ],
        'user' => array(
            
            // enable cookie-based authentication
            'allowAutoLogin' => true
        ),<span style="font-family: Arial, Helvetica, sans-serif;">)</span>

第二步:进行apache配置


yii中有个文件:.htaccess 用来专门配置apache服务器的,这个文件下面配置输入下面的代码


<IfModule mod_rewrite.c>
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
</IfModule>

这个文件配置好了之后,一定要把apache中的rewrite模块开启:



然后就OK了。


整个URL的配置就已经完成了。


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。