.htaccess rewrite condition question.

Status
Not open for further replies.

lambada

New Member
Messages
2,444
Reaction score
0
Points
0
I have a nice working re-write going except for one small glitch

Here's the htacess file I have:
Code:
# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName www.samwal.x10hosting.com
AuthUserFile /backup/home/lambada/public_html/_vti_pvt/service.pwd
AuthGroupFile /backup/home/lambada/public_html/_vti_pvt/service.grp
AddType application/x-httpd-php-source .phps

RewriteEngine On
RewriteRule http://www.samuels-space.info/(.*) v2/index2.php?parameters=$1


Now my style pages need to be exempt from this - they are all stored in v2/styles/
HOw can I stop the server rewriting requests to this folder?
Thanks

lambada
 

lambada

New Member
Messages
2,444
Reaction score
0
Points
0
Found a way, I just added another htacess file with
modrewrite Off
in the /v2/styles folder!

I guess i'm learning about K.I.S.S. now!

:lockd:
 
Status
Not open for further replies.
Top