Reputation: 348
I would like to install a WP under main folder, and redirect all the traffic to it, expect any visit to domain.com/api, domain.com/mobile.
cases:
I've try few setting for htaccess, but I can not all cases works. Can anyone help me out here?
Big thanks in advance.
|--main
| |-- index.php
|--api
|--mobile
|--.htaccess
RewriteEngine On
# Change root directory to "main" folder
RewriteCond %{THE_REQUEST} ^GET\ /main/
RewriteRule ^main/(.*) /$1 [L,R=301]
RewriteRule !^main/ main%{REQUEST_URI} [L]
Upvotes: 1
Views: 22
Reputation: 785146
Change your last rule to:
RewriteRule !^(main|api|mobile)/ main%{REQUEST_URI} [L,NC]
Upvotes: 1