vue刷新頁面跳轉404怎么辦?
1. 問題描述
單頁面應用的vue項目,設置router模式為history。可以跳轉但刷新了頁面,則顯示為404。vue-router的默認hash模式使用URL的hash來模擬一個完整的URL,當URL改變時,頁面不會重新加載。但是這種hash很丑,也不符合對URL的使用習慣。所以,需要使用另外一個叫history模式來實現URL跳轉而無須重新加載頁面。export default new Router({ mode: "history", routes: [# other code ] )}2. Apache服務器配置
3. nginx服務器配置