uniapp开发的h5网页如何去掉网址里的#号
在manifest.json里配置history模式,这里特别注意下面的 运行的基础路径里不要写./因为这个默认会强制hash模式。history模式下配置Apache。history模式下配置nginx。然后再服务器端配置下规则。
·
在manifest.json里配置history模式,这里特别注意下面的 运行的基础路径 里不要写./因为这个默认会强制hash模式
如图
然后再服务器端配置下规则
history模式下配置nginx
location / {
try_files $uri $uri/ /index.html;
}
history模式下配置Apache
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
更多推荐
已为社区贡献5条内容
所有评论(0)