Jump to content

RewriteRule help


nicuz

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/72466-rewriterule-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.