The following .htaccess code is used at my /business/ website, and as it is a demonstration website I would have to copy it several times, with different folder names... Like /business/ /restaurants/ /law/, etc
Is it possible to remove the RewriteBase /business/ and RewriteRule . /business/index.php [L]?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /business/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /business/index.php [L]
</IfModule>