>  기사  >  백엔드 개발  >  nginx pseudo-static을 tengine으로 마이그레이션하는 방법은 무엇입니까?

nginx pseudo-static을 tengine으로 마이그레이션하는 방법은 무엇입니까?

WBOY
WBOY원래의
2016-12-01 01:27:491213검색

用的是thinkphp写的程序,下面是tengine的伪静态,在nginx没问题,tengine上面只有最后一条rewrite ^(.*)$ /index.php?s=$1 last;生效了,html文件改写并没有任何效果
server {

<code>    ...省略部分

    if (!-e $request_filename) {
            rewrite ^/share-([0-9]+)\.html$ /index.php/share/view/id/$1 last;
            rewrite ^/goods-([0-9]+)\.html$ /index.php/goods/view/id/$1 last;
            rewrite ^/store-([0-9]+)\.html$ /index.php/store/index/id/$1 last;
            rewrite ^/coupon-(.*)\.html$ /index.php/coupon/view/hash/$1 last;
            rewrite ^/ring-(.*)\.html$ /index.php/ring/index/brand/$1 last;
            rewrite ^/vip.html$ /index.php/vip/index last;
            rewrite ^/static/(.*)$ /static/$1 last; 
            rewrite ^(.*)$ /index.php?s=$1 last;

            break;
    }

    ...省略部分
</code>

}

回复内容:

用的是thinkphp写的程序,下面是tengine的伪静态,在nginx没问题,tengine上面只有最后一条rewrite ^(.*)$ /index.php?s=$1 last;生效了,html文件改写并没有任何效果
server {

<code>    ...省略部分

    if (!-e $request_filename) {
            rewrite ^/share-([0-9]+)\.html$ /index.php/share/view/id/$1 last;
            rewrite ^/goods-([0-9]+)\.html$ /index.php/goods/view/id/$1 last;
            rewrite ^/store-([0-9]+)\.html$ /index.php/store/index/id/$1 last;
            rewrite ^/coupon-(.*)\.html$ /index.php/coupon/view/hash/$1 last;
            rewrite ^/ring-(.*)\.html$ /index.php/ring/index/brand/$1 last;
            rewrite ^/vip.html$ /index.php/vip/index last;
            rewrite ^/static/(.*)$ /static/$1 last; 
            rewrite ^(.*)$ /index.php?s=$1 last;

            break;
    }

    ...省略部分
</code>

}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.