Hi Guys,
I have the following in my .htaccess:
The first two RewriteRules work fine, but the last one... current will match something like ..com/section/page/ whereas I want it to match ..com/section/page.phpCode:RewriteEngine on RewriteRule ^/?$ template.php?section=home&page=home [L] RewriteRule ^index.php?$ template.php?section=home&page=home [L] RewriteRule ^([^/\.]+)/([^/\.]+)/?$ template.php?section=$1&page=$2 [L]
I've tried fiddling with it, but no luck. I'm very new to mod_rewrite.
Thanks, Phil




Reply With Quote