WordPress: how to install an app to work alongside wordpress

I’d like to install an app to work alongside wordpress so that

All urls go to wordpress and this one goes to my app www.example.com/myapp.

Read More

I’me guessing i’ll need to change the .htaccess file/

Thanks you in advance

Related posts

Leave a Reply

2 comments

  1. You can install your app in a subdirectory e.g. myapp/ and make sure to add this rule as the first rule in our wordpress’s .htaccess file:

    # skip myapp/ from WordPress's rules
    RewriteRule ^myapp(/|$) - [L,NC]