您好,登錄后才能下訂單哦!
這篇文章主要介紹vue-cli如何打包使用history模式的后端配置,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
apache的配置
這是windows下的
在httpd-vhosts.conf文件中把目錄指向項目index.html文件所在的位置
# Virtual Hosts # <VirtualHost *:80> ServerName localhost DocumentRoot D:/wamp64/www/huanzuan/dist <Directory "D:/wamp64/www/huanzuan/dist"> Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all </Directory> </VirtualHost>
然后再 index.html文件的同級路徑下 創建.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>
內容就是官方文檔給的 一點都不用改
然后確保 config/index.js中的build下的
assetsPublicPath: '/',是絕對路徑就可以了
以上是“vue-cli如何打包使用history模式的后端配置”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。