Thread: ReWrite URLS ?
View Single Post
Old 11-10-2008, 09:29 PM   #2 (permalink)
ETbyrne
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

You can use Mod_rewrite to accomplish this if you are on a Apache server.

Just put the following code into a file .htaccess (no file name, just the extension .htaccess) and upload it to your web sites home folder.

Code:
RewriteEngine on
RewriteRule ^home$ /system/pages/home.php [L]
I'm not 100% sure the above code will work but it should. This should make all traffic that goes to
Code:
www.domain.com/home
Look like this page:
Code:
www.domain.com/system/pages/home.php
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote