Home > Backend Development > PHP Tutorial > How to migrate nginx pseudo-static to tengine?

How to migrate nginx pseudo-static to tengine?

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2023-03-02 13:30:02
Original
1324 people have browsed it

用的是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>
Copy after login
Copy after login

}

回复内容:

用的是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>
Copy after login
Copy after login

}

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Error restarting nginx
From 1970-01-01 08:00:00
0
0
0
server - Nginx configuration webapp problem
From 1970-01-01 08:00:00
0
0
0
Nginx default.conf problem
From 1970-01-01 08:00:00
0
0
0
centos7 - NGINX exception occurs
From 1970-01-01 08:00:00
0
0
0
nginx load balancing
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template