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

伪静态规则 ECOS

时间:2014-12-27 17:22:45      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:

 RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} -f [OR]
  RewriteCond %{REQUEST_FILENAME} -d [OR]
  RewriteCond %{REQUEST_FILENAME} -l
  RewriteRule . - [NC,L]
  RewriteRule . index.php [NC,L]

 

 

Nginx

    location / {
            index   index.php index.html index.htm;
            if ($request_uri ~ (.+?\.php)(|/.+)$) {
                     break;
            }
            if (!-e $request_filename) {
                rewrite ^/(.*)$ /index.php/$1 last;
            }
        }
          location ~ ^/shopadmin {
           rewrite  ^/(.*)$  /index.php/$1  last;
           break;
        }

 

伪静态规则 ECOS

标签:

原文地址:http://www.cnblogs.com/jimingsong/p/4188535.html

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