1: nginx server solution, modify the .conf configuration fileThere are two solutions 1: location / { try_files $uri $uri/ @router; index index.html; } location @router { rewrite ^.*$ /index.html last; } 2: location / { error_page 404 /index.html; #try_file $uri $uri/ /index.html =404; } 2: Apache server solution(Assuming it is placed in the csdn directory) is divided into the following steps 1. Configure routing: Use history mode and configure base 2. Change assetsPublicPath in the config/index.js file to the file path you put on the server. The root directory is '/'. If it is placed in a folder, for example: /csdn/' 3. Modify Apache's httpd.conf file to support .htaccess, 4. Add the .htaccess file to the corresponding folder project. (Note that Windows does not support the format without a file name, i.e. .***, so you need to create a new text document first, write the content, then upload it to the corresponding directory via FTP, and then rename it. You will not be able to see it after renaming it here, so you need to set FTP to view hidden files) <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /csd/ RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /csd/index.html [L] </IfModule> 5. Restart the server SummarizeThis concludes this article about two solutions to the 404 problem of refreshing the vue package upload server. For more relevant vue package upload server 404 content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Explanation of the steps for Tomcat to support https access
>>: Solution to MySQL failure to start
Download foreign images using Alibaba Cloud Image...
Preface In the process of developing a mini progr...
Table of contents Install Basic configuration of ...
This morning I planned to use Wampserver to build...
Solution to MySQL failure to start MySQL cannot s...
Preface Because this is a distributed file system...
Table of contents 1. Component Communication 1. P...
In the previous article https://www.jb51.net/arti...
The SSH mentioned here is called Security Shell. ...
Table of contents 1. How the Bootstrap grid syste...
Use HTML to create complex tables. Complex tables...
Table of contents Case 1: Case 2: Case 3: To summ...
Table of contents Create a new html file: Create ...
This article shares the installation and configur...
What are HTTP Headers HTTP is an abbreviation of ...