Please provide a code to configure thinkphp pseudo-static in nginx?
迷茫
迷茫 2017-05-16 17:15:53
0
1
670

ThinkPHP url rewrite under nginx Rewrite rules pseudo-static

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(1)
巴扎黑
server {  
    location / {  
        index  index.htm index.html index.php;  
        try_files  $uri  /index.php$uri;  
    }  
    location ~ .+\.php($|/) {  
        root        /var/www/thinkphp;  
        fastcgi_pass   127.0.0.1:9000;  
        fastcgi_index  index.php;  
            
        fastcgi_split_path_info  ^(.+\.php)(/.*)$;  
        fastcgi_param  PATH_INFO $fastcgi_path_info;  
          
        include        fastcgi.conf;  
    }  
}  
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!