I have installed WordPress in the main domain uberchecker.com and installed a PHP script in uberchecker.com/app, Now when I try to access any app. I'm getting the error that page not found as it shows the Wordpress site...
How do i show the app page instead of the WordPress site showing me a 404 page?
My .htaccess file in the Wordpress root folder looks like this
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/app/(.*)$ [OR]
RewriteRule ^.*$ - [L]
</IfModule>