nicuz Posted October 9, 2007 Share Posted October 9, 2007 Hi, I am trying to make friendly urls for my website. Here's what I want: www.mydomain.com/display_ad.php?id=3 to become www.mydomain.com/display_ad_3.html I read some tutorials on modyifing the .htaccess file and here's what I got so far: AddHandler server-parsed .htm AddHandler server-parsed .htm RewriteEngine On RewriteBase / RewriteRule ^display_ad_([0-9]+)\.html$ /display_ad.php?id=$1 [L] And it's not working. Anyone knows where the mistake is? Thanks Quote Link to comment Share on other sites More sharing options...
hackerkts Posted October 11, 2007 Share Posted October 11, 2007 RewriteEngine on RewriteRule ^display_ad_([0-9]+).html$ display_ad.php?id=$1 Hope this works. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.