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

Could somebody explain these rewrite rules in English please so I can get a better understanding of the syntax - my initial understanding is the following:

If the URL starts or ends with a slash then display http://www.example.com/:

RewriteRule ^/$                 http://www.example.com/ [P,L,QSA,NC]

If the URL starts with a slash followed by a string not including a slash then a dot and not including another string with a slash then redirect it to http://www.example.com/$1

RewriteRule ^/([^/]+\.[^/]+)$   http://www.example.com/$1 [P,L,QSA,NC]
share|improve this question

1 Answer

The fist regex says: it has to start AND end with the slash. So only the pure "/" matches here. If that matches, the redirected url is delivered via the builtin proxy module instead of redirecting the browser. All query parameters are appended again and no further rewriting is done in that request. The also mentioned NC (case insensitity) is meaningless here.

Your description of the second expression is correct. The prevention of matching the slashes serves to prevent accidential matching of sub directories. So only requests to objects in the top level directory match. The same additional rules apply as in the first expression, and again the case insensivity is meaningless.

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.