若依 前端框架部署 apache 代替nginx的try_file

ngin是这样的

location / {
try_files $uri $uri/ /index.html;
index index.html index.htm;
}

apache是这样的

<Directory "/www/wwwroot/XXX.com">
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.html [L]
SetOutputFilter DEFLATE
Options FollowSymLinks
AllowOverride All
Require all granted
DirectoryIndex index.php index.html index.htm default.php default.html default.htm
</Directory>

 

加粗的就是

posted @ 2022-05-18 17:52  西瓜霜  阅读(584)  评论(0编辑  收藏  举报