views:

37

answers:

1

I have the following code which works perfectly, but I want to allow access to the /assets directory?

Options +FollowSymlinks
RewriteEngine On

RewriteRule ^.* controller.php
AddHandler php5-script .php

Could someone give me a little line of code or two to help?

+2  A: 

Before the rule:

RewriteCond %{REQUEST_URI} !/assets
reko_t
Perfect!!Will mark tick in 8 minutes when it lets me :)
tarnfeld