Forum Moderators: open
I only know basic html, enuff to create my site with an editor, so any explanation would be greatly appreciated.
Thanx in advance!
~Malice
Just create an index.html file and place it in your root folder, www.mysite.com/index.html
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="REFRESH" content="0; URL=https://www.mysite.com/whereeveryouwanttogo/yourpage.html">
</head>
<body>
this should redirect them to your page.
EDIT : Actually, yeah - the idea above is probably better than mine (some people don't have javascript).
[edited by: BlobFisk at 12:12 pm (utc) on Oct. 25, 2004]
[edit reason] No URLs please! See TOS [webmasterworld.com] [/edit]
Hmmm, I type pretty slow. Besides whats been offered, the best way to accomplish this is to modify your .htaccess file and add a 301 redirect. This will tell the search engines to permanently refer to your site address for this domain.
Here's an example:
RewriteRule index\.html$ http://www.domain.com/your_page.html [R=301,L]
<add>
If you want to read more about this option, here are a few places to get started:
Apache Web Server Charter [webmasterworld.com]
(Bummer - the library is empty...)
Apache Web Server Forum [webmasterworld.com]
[edited by: grandpa at 5:25 am (utc) on Oct. 25, 2004]