Posted by lawrence k on 11/03/06 00:06
lawrence k wrote:
> I put this in my htaccess file:
>
> > Options FollowSymLinks
> > RewriteEngine On
> > RewriteBase /
>
> > RewriteCond %{REQUEST_URI} /abelokugawa
> > RewriteRule abelokugawa /media/audio/index.php?pageId=182
>
> It works well here:
>
> http://www.monkeyclaus.org/diario/
>
> However, it matches against too much. No one can see this jpeg image:
>
> http://www.monkeyclaus.org/images/gallery/diario/diario01.jpg
>
> How to limit this regex?
For anyone curious, I found this works fine:
RewriteCond %{REQUEST_URI} /diario/*$
RewriteRule diario
http://www.monkeyclaus.org/media/audio/index.php?pageId=957
[Back to original message]
|