我想在子域上设置我的pwa应用程序,并能够对其进行更新而没有任何问题。
通常,我已经完成了所有设置,子域上的应用程序运行良好,但是当我通过ftp更新代码时,在js块中看到空白页和控制台中出现意料不到的错误。刷新后,一切都很好。我已经读到这是htaccess的问题。
.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
index.html
<base href="/">