# 本文件是nginx的配置文件。 # 根据需要修改下面的域名与目录 # 通常放置在/etc/nginx/conf.d下 server { listen 80; #域名设置 server_name bronet.cn; #项目目录 root /www/bronet/public; index index.php; location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } } location ~ .php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }