PDA

View Full Version : RewriteRule


ziggy1621
01-28-2010, 04:02 PM
my goal is to have
template.php?content=ics&menu=ics

change to
/ics/ics.html


my current .htaccess that isn't working
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^/([^/]+)/([^/]+).html /template.php?content=$1&menu=$2 [NC]

any help appreciated

abduraooft
01-28-2010, 04:13 PM
Try RewriteRule ^([^/]+)/([^/]+).html /template.php?content=$1&menu=$2 [NC]

ziggy1621
01-28-2010, 04:37 PM
Try RewriteRule ^([^/]+)/([^/]+).html /template.php?content=$1&menu=$2 [NC]

No go

abduraooft
01-29-2010, 04:16 AM
No go
It works for me when I put the template.php and htaccess files in the root folder and when I type http://mysite.com/ics/ics.html in the url.