联系官方销售客服
1835022288
028-61286886
插件 | 多网站系统 V4.4 |
应用作者 | 迅睿官方团队 |
发布时间 | 2019-07-08 08:10:35 |
更新时间 | 2024-05-22 12:18:21 |
多网站一直提示伪静态设置失败
这是我设置的伪静态
###当存在多个子目录格式的域名时,需要多写几组location标签:location /目录/
location / {
if (-f $request_filename) {
break;
}
if ($request_filename ~* "\.(js|ico|gif|jpe?g|bmp|png|css)$") {
break;
}
if (!-e $request_filename) {
rewrite . /index.php last;
}
}
###当存在多个子目录格式的域名时,需要多写几组location标签:location /目录/
location /en/ {
if (-f $request_filename) {
break;
}
if ($request_filename ~* "\.(js|ico|gif|jpe?g|bmp|png|css)$") {
break;
}
if (!-e $request_filename) {
rewrite . /en/index.php last;
}
}
目录模式就不需要绑定站点,例如/aa/, /bbb/
1、设置目录,需要先手动创建web2目录
2、然后切换到更新缓存,更新站点项目
3、设置子目录伪静态
这个地方很关键,如果设置不当,可能无法正常访问
推荐使用Nginx兼容性比较好