[Vuejs]-How to run site with vue build file and wordpress in same domain

0๐Ÿ‘

I would suggest an .htaccess (or the equivalent for other servers) and simple redirect this specific url.

Might look like this:

RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d

# WordPress
RewriteRule ^blog$ /path/to/wordpress/index.php [L]

# Vue
RewriteRule . /index.html [L]

Leave a comment