在Weblogic服务器中配置.htaccess并将所有路由重定向到index.html

时间:2019-12-22 20:48:17

标签: .htaccess vue.js routing weblogic

我在weblogic服务器中部署了vuejs,此应用程序仅包含(html,js,css),不包含任何Java文件 根据vue文档,如果您使用apache服务器进行以下配置,以将所有路由重定向到index.html页

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.html [L]
</IfModule>

如何在不使用任何Java代码或过滤器的情况下在应用程序级别的weblogic服务器中配置相同的

0 个答案:

没有答案