- 根目录有多个地方记得都要修改
- server {
- listen 80;
- server_name www.xxx.com xxx.com;
- if ($host != 'www.xxx.com' ) {
- rewrite ^/(.*)$ http://www.xxx.com/$1 permanent;
- }
- #charset koi8-r;
- #access_log /var/log/nginx/log/host.access.log main;
- root /home/www/xxx.com;
- location / {
- index index.php index.html index.htm;
- try_files $uri $uri/ /index.html;
- # Uncomment to enable naxsi on this location
- # include /etc/nginx/naxsi.rules
- if (!-e $request_filename)
- {
- # rewrite ^/PHPParser/(.*)$ /PHPParser/index.php?s=$1 last;
- rewrite ^/index.php(.*)$ /index.php?s=$1 last;
- rewrite ^(.*)$ /index.php?s=$1 last;
- rewrite ^/(.*)$ /index.php/$1;
- break;
- }
- }
- #error_page 404 /404.html;
- # redirect server error pages to the static page /50x.html
- #
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- #项目地址
- root /home/www/xxx.com;
- # root /usr/share/nginx/html;
- }
- # proxy the PHP scripts to Apache listening on 127.0.0.1:80
- #
- #location ~ \.php$ {
- # proxy_pass http://127.0.0.1;
- #}
- location ~ \.php$ {
- #项目地址
- root /home/www/xxx.com;
- #root /usr/share/nginx/html;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_split_path_info ^(.+\.php)(.*)$;
- fastcgi_param PATH_INFO $fastcgi_path_info;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include /etc/nginx/fastcgi_params;
- try_files $uri =404;
- }
- # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
- #
- #location ~ \.php$ {
- # root html;
- # fastcgi_pass 127.0.0.1:9000;
- # fastcgi_index index.php;
- # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
- # include fastcgi_params;
- #}
- # deny access to .htaccess files, if Apache's document root
- # concurs with nginx's one
- #
- #location ~ /\.ht {
- # deny all;
- #}
- }
转载于:https://www.cnblogs.com/RainLi/p/5752270.html