PDA

View Full Version : Site default page redirection


Emanuel
1-13-02, 12:30 PM
I need to change the startup of my site from abc.com/index.htm to abc.com/cgi-bin/store/commere.cgi

Can this be done? I'm not sure if creating a .htaccess file in my htdocs with a directory index will work since the commerce.cgi file doesn't exist in the htdocs folder.

Any assistance would be greatly appreciated.

Bud
1-13-02, 04:47 PM
Hi Emanuel,

This can be accomplished through mod_rewrite. :)

Simply add the following 2 lines to a .htaccess file and place it in your htdocs directory. Make sure there is an index.htm file in your htdocs directory.



RewriteEngine on
RewriteRule ^index\.htm$ /cgi-bin/store/commere.cgi




~bud

Emanuel
1-13-02, 07:55 PM
Thanks it worked.

I was able to get more infor as well from-
http://httpd.apache.org/docs/misc/rewriteguide.html

You've been a great help. :)

Bud
1-14-02, 04:27 AM
Always glad to help :)

~bud