天天看點

vue架構下部署上線後重新整理報404問題解決方案Apache配置nginx配置原生 Node.jsInternet Information Services (IIS)CaddyFirebase 主機最後

Apache配置

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

nginx配置

location / {
  try_files $uri $uri/ /index.html;
}
           

vue history模式下nginx配置

服務端nginx的一開始配置如下(假設域名為:xx.xxx.com):

[***** ~]# cat /Data/app/nginx/conf/vhosts/xx.xxx.com.conf

server {
         listen 80;

         server_name testwx.wangshibo.com;
         root /Data/app/xqsj_wx/dist;
         index index.html;

         access_log /var/log/testwx.log main;

}
           

修改如下:

server {
         listen 80;

         server_name testwx.wangshibo.com;
         root /Data/app/xqsj_wx/dist;
         index index.html;
         access_log /var/log/testwx.log main;
         
		## 注意從這裡開始
         location / {
             try_files $uri $uri/ @router;
             index index.html;
         }

        location @router {
            rewrite ^.*$ /index.html last;
        }

}
           

原生 Node.js

const http = require('http')
const fs = require('fs')
const httpPort = 80

http.createServer((req, res) => {
  fs.readFile('index.htm', 'utf-8', (err, content) => {
    if (err) {
      console.log('We cannot open "index.htm" file.')
    }

    res.writeHead(200, {
      'Content-Type': 'text/html; charset=utf-8'
    })

    res.end(content)
  })
}).listen(httpPort, () => {
  console.log('Server listening on: http://localhost:%s', httpPort)
})
           

基于 Node.js 的 Express

對于 Node.js/Express,請考慮使用 connect-history-api-fallback 中間件

Internet Information Services (IIS)

  1. 安裝 IIS UrlRewrite
  2. 在你的網站根目錄中建立一個 web.config 檔案,内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <system.webServer>
   <rewrite>
     <rules>
       <rule name="Handle History Mode and custom 404/500" stopProcessing="true">
         <match url="(.*)" />
         <conditions logicalGrouping="MatchAll">
           <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
           <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
         </conditions>
         <action type="Rewrite" url="/" />
       </rule>
     </rules>
   </rewrite>
 </system.webServer>
</configuration>
           

Caddy

rewrite {
    regexp .*
    to {path} /
}
           

Firebase 主機

在你的 firebase.json 中加入:

{
  "hosting": {
    "public": "dist",
    "rewrites": [
      {
        "source": "**",
        "destination": "/index.html"
      }
    ]
  }
}
           

最後

給個警告,因為這麼做以後,你的伺服器就不再傳回 404 錯誤頁面,因為對于所有路徑都會傳回 index.html 檔案。為了避免這種情況,你應該在 Vue 應用裡面覆寫所有的路由情況,然後在給出一個 404 頁面。

// 注意注意!!添加404頁面一定要在所有路由後面喔
const router = new VueRouter({
  mode: 'history',
  routes: [
  	{ path: '/', component: home },
  	{ path: '/detail', component: detail },
    { path: '*', component: NotFoundComponent }
  ]
})
           

以上内容來自https://blog.csdn.net/weixin_40755688/article/details/86382438

真是操作有效,特意備份一份操作記錄,希望能幫到你們,我環境是在寶塔下操作的

1.vi 打開檔案 輸入,儲存

vue架構下部署上線後重新整理報404問題解決方案Apache配置nginx配置原生 Node.jsInternet Information Services (IIS)CaddyFirebase 主機最後

2.修改配置檔案

vue架構下部署上線後重新整理報404問題解決方案Apache配置nginx配置原生 Node.jsInternet Information Services (IIS)CaddyFirebase 主機最後