Two solutions for Vue package upload server refresh 404 problem

Two solutions for Vue package upload server refresh 404 problem

1: nginx server solution, modify the .conf configuration file

There 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

Summarize

This 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:
  • Vue implements attachment upload function
  • Spring+Vue integrates UEditor rich text to upload picture attachments
  • Vue+element+oss realizes front-end fragment upload and breakpoint resume
  • Based on vue-simple-uploader, encapsulate the global upload plug-in function of file segment upload, instant upload and breakpoint resume
  • Vue form post request combined with Servlet to realize file upload function
  • Vue uses vue-quill-editor rich text editor and uploads pictures to the server
  • Realize mobile image upload, compression, drag-and-drop sorting, and drag-and-drop deletion functions based on Vue2
  • Things to note when uploading pictures with vue+vant
  • Vue realizes uploading after cropping pictures
  • Implementation example of uploading multiple attachments in Vue

<<:  Explanation of the steps for Tomcat to support https access

>>:  Solution to MySQL failure to start

Recommend

How to avoid garbled characters when importing external files (js/vbs/css)

In the page, external files such as js, css, etc. ...

Detailed explanation of nginx optimization in high concurrency scenarios

In daily operation and maintenance work, nginx se...

Solve the problem that Docker cannot ping the host machine under Mac

Solution Abandon the Linux virtual machine that c...

Native JS to achieve book flipping effects

This article shares with you a book flipping effe...

Refs and Ref Details in Vue3

The editor also shares with you the corresponding...

How to redirect PC address to mobile address in Vue

Requirements: The PC side and the mobile side are...

Some points on using standard HTML codes in web page creation

The most common mistake made by many website desi...

CSS tips for implementing Chrome tab bar

This time let’s look at a navigation bar layout w...

IE9beta version browser supports HTML5/CSS3

Some people say that IE9 is Microsoft's secon...

Detailed explanation of MySQL database (based on Ubuntu 14.0.4 LTS 64 bit)

1. Composition and related concepts of MySQL data...

Common writing examples for MySQL and Oracle batch insert SQL

Table of contents For example: General writing: S...

Use the Linux seq command to generate a sequence of numbers (recommended)

The Linux seq command can generate lists of numbe...

Understand CSS3 Grid layout in 10 minutes

Basic Introduction In the previous article, we in...