RewriteCond %{HTTP_HOST} ^mydomain.com [OR]
RewriteCond %{HTTP_HOST} ^www.mydomain.com
RewriteCond %{REQUEST_URI} !folderB/
RewriteCond %{REQUEST_URI} !folderA/
RewriteRule ^(.*)$ folderB/ [L]


On Wed, Jun 27, 2012 at 3:53 PM, J. Bakshi <joyd...@infoservices.in> wrote:

> Dear list,
>
> I already have the following at my .htaccess which is running well
>
> [........]
>
> RewriteCond %{HTTP_HOST} ^mydomain.com [OR]
> RewriteCond %{HTTP_HOST} ^www.mydomain.com
> RewriteCond %{REQUEST_URI} !folderB/
> RewriteRule ^(.*)$ folderB/ [L]
>
> [...........]
>
> I need a little modification like if I give
> mydomain.com/folderA then it will go straight
> inside folderA otherwise the above will be honored.
>
> Can I write multiple rewrite condition ? I have tried a different
> block as above but with folderA added at .htaccess and the apache error
> log shows
>
> ``````````````````
> Request exceeded the limit of 10 internal redirects due to probable
> configuration error.
> Use 'LimitInternalRecursion' to increase the limit if necessary. Use
> 'LogLevel debug' to get a backtrace.
> ````````````````
>
> How can I fix this ?
>
> Thanks
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>

Reply via email to