Nginxサーバーはドメイン名アドレスを簡略化し、indexを削除する.phpの方法

1184 ワード

エクスポートhttps://www.php.cn/php-weizijiaocheng-391228.html転載先https://blog.csdn.net/wanchaopeng/article/details/84580076     
 
server {     
             listen       8081;   
             server_name  localhost;
             access_log /var/log/nginx/lar.access.log combined;  
           location / {  
                root /usr/local/nginx/html/laravel-gymie/public;   
                index index.php index.htm index.html;  
                #autoindex on;  
                #autoindex_exact_size off;  
                #autoindex_localtime on;  
                 if (!-e $request_filename) {               #           
                    rewrite  ^/(.*)$  /index.php?s=$1  last;  
                    break;  
                  }  
           }  
           location ~ \.php?.*$ {   
                  fastcgi_index  index.php;
                  fastcgi_split_path_info ^(.+\.php)(.*)$;
                  root /usr/local/nginx/html/laravel-gymie/public; 
                  fastcgi_pass 127.0.0.1:9001; 
                  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
                  include fastcgi_params; 
 
      }
    }