On 09/04/2014 04:35 PM, Wei-min Lee wrote:

1 - all requests for .html?$, .aspx?$, etc, should be rewritten as $1.page
2 - exclude /folderx/(.*)\.html?$ from rule 1

That's what RewriteCond is for

RewriteCond %{REQUEST_URI} !^/folderx/(.*)\.html?$
RewriteRule Goes Here

A RewriteCond (or N RewriteConds) apply to the 1 RewriteRule following.

http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritecond

--
Rich Bowen - rbo...@rcbowen.com - @rbowen
http://apachecon.com/ - @apachecon

Reply via email to