设置连接:LNMP添加、删除虚拟主机及伪静态使用教程 - LNMP一键安装包
server
{
listen 80;
#listen [::]:80;
server_name www.recruit_linux.com recruit_linux.com;
index index.html index.htm index.php default.html default.htm default.php;
root /usr/local/wwwroot/default/recruit/public;
include none.conf;
#error_page 404 /404.html;
include enable-php.conf;
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /\.
{
deny all;
}
access_log /home/wwwlogs/www.recruit_linux.com.log;
}