虚拟主机去除index.php目录地址
复制代码到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;
}