Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a directory on a site:

In it I have a .htaccess file.

I want it to take any URL like this:

And rewrite it to:

Except for any URLs that refer to these directories:

I have the first part working, but unable to tell it to exclude files in certain directories:

Options +FollowSymlinks
RewriteEngine on

RewriteRule ^([^/]+)/([^/]+) index.php?arg1=$1&arg2=$2 [NC]

Update:

This works in a very basic and simple sense:

RewriteRule ^css - [L,NC]
RewriteRule ^javascript - [L,NC]
RewriteRule ^images - [L,NC]
RewriteRule ^([^/]+)/([^/]+) index.php?arg1=$1&arg2=$2 [NC]

but I'm sure there is a more elegant solution?

share|improve this question

2 Answers

up vote 1 down vote accepted

I think the keyword you're looking for is RewriteCond. It's pretty similar to what you ended up with.

RewriteCond %{REQUEST_URI} !^(css|javascript|images)
RewriteRule ^([^/]+)/([^/]+) index.php?arg1=$1&arg2=$2 [NC]
share|improve this answer

You might be able to use RewriteCond to check if an actual file exists... at least, I use this for websites when I want things like CSS, Javascripts, and images to be accessible (without the request being redirected.)

Here's the line I use:

# only rewrite if the requested file doesn't exist
RewriteCond %{REQUEST_FILENAME} !-s

Let me know if that works for you!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.