伪静态
- Laravel
location / {
try_files $uri $uri/ /index.php$is_args$query_string;
}
重定向配置
- 域名地址匹配
set $root_path '';
if ( $request_uri !~* /api ) {
set $root_path /www/wwwroot/tutor/resources/dist;
}
if ( $request_uri ~* /(api|storage) ) {
set $root_path /www/wwwroot/tutor/public;
}
root $root_path;
- 静态资源匹配
location ~* .(jpg|gif|png|js|css)$ {
root /var/www/html;
}
本文由 邓尘锋 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为: Mar 22, 2021 at 04:46 pm