Really confused help

Connect with other users about what to run on your webhosting (and how to run it) here.
Post Reply
AppleZ
A semi-regular
A semi-regular
Posts: 17
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Sun Mar 10, 2013 11:49 am

Really confused help

Post by AppleZ »

So I installed Wordpress and forums on my site but I am trying to make Wordpress as the homepage.
I moved the directories around so Wordpress can be ebsf.us but it seems to break. I'm unsure of what to do can I please get some help
doulos9
This is my homepage
This is my homepage
Posts: 200
Joined: Sun Sep 15, 2013 9:44 pm

Re: Really confused help

Post by doulos9 »

It might be easiest to just move your wordpress files into the root web directory (the same place you put the wordpress and forums directorys.

OR, Put an html index file in your root directory with a redirect inside the HEAD tags like this:

Code: Select all

<meta HTTP-EQUIV="Refresh" CONTENT="0; URL=http://ebsf.us/wordpress">
OR, Put a PHP index file in your root directory like this:

Code: Select all

<?php 

header('Location: http://ebsf.us/wordpress/'); 

?>
There are other ways to redirect also just do a web search.
Post Reply