nginx隐藏当前域名下的index.php

版权声明:未经允许,不得转载 https://blog.csdn.net/wanchaopeng/article/details/84580076

在访问172.17.230.124:8081的时候报404

跳转http://172.17.230.124:8081/auth/login

添加index.php能正常访问

http://172.17.230.124:8081/index.php/auth/login

配置如下


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; 

      }
}

猜你喜欢

转载自blog.csdn.net/wanchaopeng/article/details/84580076