背景:thinkphp5項目
服務器環境: lnmp
1 打開路徑 /usr/local/nginx/conf/vhost/
此路徑下會有你添加的域名文件夾。。找到對應的域名打開。
2 代碼如下,背景色部分是我新加的
server { listen 80; #listen [::]:80; server_name www.xxx.cn xxx.cn; index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/www.xxx.cn/public; include other.conf; #error_page 404 /404.html; include enable-php.conf; location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 12h; } location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } } location ~ /\. { deny all; } access_log /home/wwwlogs/www.xxx.cn.log; }
3 重啟nginx
#nginx命令 start: /usr/local/nginx/sbin/nginx stop: /usr/local/nginx/sbin/nginx -s stop reload: /usr/local/nginx/sbin/nginx -s reload