码迷,mamicode.com
首页 > 其他好文 > 详细

yii的url伪静态

时间:2014-10-05 10:22:58      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   文件   sp   div   

修改config/main.php

urlManager=>array(
            showScriptName=>false,
            urlSuffix=>.html,
            urlFormat=>path,
            rules=>array(
                <controller:\w+>/<action:\w+>/<sId:\d+>=><controller>/<action>,
            ),
        ),

 

在index.php目录建立.htaccess文件

<IfModule rewrite_module>
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
</IfModule>

 

yii的url伪静态

标签:style   blog   color   io   ar   for   文件   sp   div   

原文地址:http://www.cnblogs.com/ziyouchutuwenwu/p/4006673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!