11-10-2008, 08:29 PM
|
#2 (permalink)
|
|
how quixotic are you?
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
|
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
|
|
|
|