shredman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Temporary Home PageOK found it… Under settings in admin I changed the Blog address (url) to my test home page e.g. http://www.domain.com/indextest.php
Forum: Fixing WordPress
In reply to: Temporary Home Pagethanks mojorob.. I was originally thinking along this path but it wont really work.
Problem is that when Im testing the wordpress site the links look to the root (e.g. http://www.domain.com/?page_id=3) What I think I need to do is get the links to point to http://www.domain.com/index_test.php?page_id=3. Im not too sure where I actually need to add the “index_test.php” bitForum: Fixing WordPress
In reply to: Temporary Home PageThanks … I’ll look into this some more. I wanted to have more control over the page design than what this method will allow.
Forum: Fixing WordPress
In reply to: redirect main page to blog pageIm not sure I fully understand what you are trying to do but you could do a redirect on the index of http://www.mysite.com to go to http://www.mysite.com/blog
Put something like this in the<head></head>tags of your home page..
<meta http-equiv="Refresh" content="0;URL=www.mysite.com/blog" />this is not a very Search Engine Friendly method. If you are more adventurous you could try a 301 redirect. You will find various ways of doing this if you google it.