Your Ad Here

Posted By

lixonic on 10/19/10


Tagged

htaccess


Versions (?)

Who likes this?

2 people have marked this snippet as a favorite

lixonic
kubaitis


Dealing with optional parameters with mod_rewrite


 / Published in: Apache
 

Desired effect is\r\n\r\nhttp://www.somedomain.com/blog/\r\nhttp://www.somedomain.com/blog/tag/\r\nhttp://www.somedomain.com/blog/page/2/

  1. RewriteRule ^blog/$ index.php?action=blog [NC,L]
  2. RewriteRule ^blog/page/(.*)$ index.php?action=blog&page=$1 [NC,L]
  3. RewriteRule ^blog/(.*)$ index.php?action=blog&tag=$1 [NC,L]

Report this snippet  

You need to login to post a comment.