做网站界面,免费招聘模板下载,科技园区建设网站的意义,牡丹江建设银行网站复制代码到NGINX设置
虚拟主机去除index.php目录地址-复制代码-NGINX设置
location / {
if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s/$1 last; break;
}
}
location ~ /\.ht { deny all;
}复制代码到NGINX设置
虚拟主机去除index.php目录地址-复制代码-NGINX设置
location / {
if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s/$1 last; break;
}
}
location ~ /\.ht { deny all;
}