Re: [us...@httpd] mod_rewrite question

2009-07-16 Thread Eric Covener
On Thu, Jul 16, 2009 at 12:57 PM, Jonathan Zuckerman wrote: > Eric, I've wondered about the L flag in htaccess and often considered > it a bug that it does not work as it does outside of htaccess, I've > searched the documentation but this is sort of an esoteric thing to > think up a keyword for s

Re: [us...@httpd] mod_rewrite question

2009-07-16 Thread Jonathan Zuckerman
On Thu, Jul 16, 2009 at 8:42 AM, Eric Covener wrote: > On Thu, Jul 16, 2009 at 11:37 AM, howard chen wrote: >> A simple rewrite rule: >> >> >> RewriteRule ^/(.*)  /index.php?q=test1  [QSA] >> RewriteRule ^/test2  /index.php?q=test2  [QSA,L] >> >> >> The above rules rewrite everything to "q=test1",

Re: [us...@httpd] mod_rewrite question

2009-07-16 Thread Eric Covener
On Thu, Jul 16, 2009 at 11:37 AM, howard chen wrote: > A simple rewrite rule: > > > RewriteRule ^/(.*)  /index.php?q=test1  [QSA] > RewriteRule ^/test2  /index.php?q=test2  [QSA,L] > > > The above rules rewrite everything to "q=test1", even I enter the URL > = http://www.example.com/test2 > > How t

[us...@httpd] mod_rewrite question

2009-07-16 Thread howard chen
A simple rewrite rule: RewriteRule ^/(.*) /index.php?q=test1 [QSA] RewriteRule ^/test2 /index.php?q=test2 [QSA,L] The above rules rewrite everything to "q=test1", even I enter the URL = http://www.example.com/test2 How to do the following... => Rewrite all url, except /test2, with the que