nginx文档

来源:互联网 发布:司马辽太郎 知乎 编辑:程序博客网 时间:2024/06/06 03:58
server { listen 80; server_name www.ibangoo.com ibangoo.com; server_tokens on; #隐藏nginx服务器信息 提高服务器的安全 location / { root /usr/share/nginx/html/Ibangoo_Web/; index index.php index.html index.htm; if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } } location ~ \.php$ { #匹配根目录下的所有的PHP文件 fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html/Ibangoo_Web$fastcgi_script_name; root /usr/share/nginx/html/Ibangoo_Web/; include fastcgi_params; } if ($host = 'ibangoo.com' ) { #如果域名不带www,跳转到带www目录下的 rewrite ^/(.*)$ http://www.Ibangoo.com/$1 permanent; } }
0 0
原创粉丝点击