[Vuejs]-How do I add a folder to run PHP scripts in Nuxt Project folder?

0👍

Nevermind, I figured out.
Just had to add one more rule inside nginx config file as below

# Demo Folder
location /demo/ {
     try_files $uri $uri/ /index.php$is_args$args;
}

Leave a comment