這次帶給大家路徑中#號怎樣除去,路徑中#號除去的注意事項有哪些,下面就是實戰案例,一起來看一下。
在開發過程中發現路徑中帶有/#/的標示,而且還去不掉,很醜陋。
眾所周知,vue-router有兩種模式,hash模式和history模式。
帶#的則是hash模式。
將router中的mode設定為history就可以了
接下來有個問題,介面一刷新,就變404了! ! ! !
網路上搜了下,需要對後端環境進行一個設定。
這裡只列舉nginx的配置,其他的配置點這裡去官網看
先配置config/index.js
修改assetsPublicPath為根目錄
module.exports = { build: { env: require('./prod.env'), index: path.resolve(__dirname, '../dist/index.html'), assetsRoot: path.resolve(__dirname, '../dist'), assetsSubDirectory: 'static', assetsPublicPath: '/', // hash 模式会默认的在此处 添加为 assetsPublicPath: './' productionSourceMap: true, ... } }
然後配置nignx
server { listen 0.0.0.0:12345; location / { root /home/我的应用跟目录; try_files $uri $uri/ /index.html =404; // 这个是重点 } error_page 404 /index.html }
Url再也沒有#了,多完美
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是路徑中#號怎樣除去的詳細內容。更多資訊請關注PHP中文網其他相關文章!