Jump to content

.htaccess rewriting url : my scenario - what should I do?


aaron_mason

Recommended Posts

Hello. 

 

My scenario:

 

i want to have a page such as

1) www.website.com/shop/1234566.html

 

to load a page such as

2) www.website.com/shop/?id=123456

 

 

I think that this is far more user friendly.  How is this done?

 

This is my first post on phpfreaks : : :  Hello !

 

Aaron

Okay, let's see how we go.

 

First you need to turn the engine on. So in .htaccess you would have:

 

RewriteEngine on

 

Then you need a rule, something like this:

 

RewriteRule ^shop/?id=([0-9]+)?$ shop/$1.html [L]

 

Try it out. So what you would do is go to www.website.com/shop/?id=123456 and it should display the contents of 123456.html

 

Also make sure that the rewrite module is enabled.

  • 2 weeks later...

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.