forecoms
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to set link to set as home page?I have found this code very useful because I setup the sites in a subfolder of the root directory then when I am ready to make it public I make an index.htm (or index.html) file with the code below.
Change the Welcome text and the URL including the page ID for the home page. I have left an example of a club site which is just about to go public to replace the current site.This code sets the site up in a frame so it also hides the page ids etc from view which is specially handy if using Joomla but just a good with WordPress.
Just copy the code below into Notpad and save as index.htm and upload to the site.
I hope this helps
Kid regards
Alan WhiteStart of code——————————
<html><head>
<meta http-equiv=”Content-Type” content=”text/html; charset=windows-1252″>
<title>Welcome To change this to what you want at the top</title>
<meta name=”GENERATOR” content=”Microsoft FrontPage 4.0″>
<meta name=”ProgId” content=”FrontPage.Editor.Document”>
</head><frameset framespacing=”0″ border=”0″ rows=”*,1″ frameborder=”0″>
<frame name=”top” src=”https://www.chatswoodtm.org.au/wpsite/?p=1″ scrolling=”auto”>
<frame name=”bottom” marginwidth=”0″ marginheight=”0″ scrolling=”no” noresize>
<noframes>
<body><p>This page uses frames, but your browser doesn’t support them.</p>
</body>
</noframes>
</frameset></html>
End of code ——————