Shortening URLS

204 Views Asked by At

Basically i want to do this,

www.mydomain.com/index.html >> change to >> www.mydomain.com/

and checkout for example,

www.mydomain.com/cart.php >> change to >> www.mydomain.com/cart/

www.mydomain.com/checkout.php >> change to >> www.mydomain.com/checkout/

Would i do this in .htaccess? i have no idea.

Any help would be greatly appreciated.

2

There are 2 best solutions below

0
On BEST ANSWER
RewriteEngine On
RewriteRule   ^cart/([0-9]+)   cart.php?ID=$1 [L]

This will allow www.mydomain.com/cart/ to run cart.php with any numerical id after the slash to the appended as an id.

0
On

Use mod_rewrite to do this.

There are some examples on this page. :)