In my root directory i got an .htaccess file containing:
RewriteEngine On
RewriteRule ^dir1(/(.*))?$ suspend.php
I'm trying to redirect each of the request within dir1 to suspend.php.
This worked perfectly until I put .htaccess file within dir1 with the following content:
RewriteOptions Inherit
RewriteRule ^soap/([^/]+)/([^/]+)/?$ index.php?start=soap&method=$1&plugin=$2&%{QUERY_STRING}
If I remove the .htaccess withing dir1 the root .htaccess redirects to suspend.php just fine. Even if comment the RewriteRule in dir1:
RewriteOptions Inherit
#RewriteRule ^soap/([^/]+)/([^/]+)/?$ index.php?start=soap&method=$1&plugin=$2&%{QUERY_STRING}
the redirect to suspend.php does not work.
Can you suggest what do I miss?
Please help :)