Ok, so I am creating two websites for our church and we are using one host. We have a main church website and one for the youth ministry. I have designed them in Dreamweaver so when I uploaded everything via FTP the folders show the file path. For example, the home page (there is a holder page on the domain itself) is:
http://www.gtcdunn.org/GTWebsite/HTML/Index.htm
The youth site is similar:
http://www.gtcdunn.org/FusionWebsite/HTML/Index.htm
Now we do own the domain
www.fusionstudentchurch.org. So I have few things I wanted to do.
1) Mask the file path (i.e. gtcdunn.org/GTWebsite/HTML/Index.htm=>gtcdunn.org/Index.htm) goes to the main church home page (that way a simple 301 redirect from gtcdunn.org to gtcdunn.org/Index.htm will make the site go live when its finished.
2)Redirect and mask the file path for the youth site. (i.e. gtcdunn.org/FusionWebsite/HTML/Index.htm=> fusionstudentchurch.org/Index.htm) and set up a simple redirect for that as well.
For both of these I wanted the rule to go through the whole site (i.e. gtcdunn.org/FusionWebsite/HTML/Events.html=>fusionstudentchurch.org/Events.html
I wrote an htaccess file (no clue if its right or not) for the youth site (it's my testing field right now. Here is what I have:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^gtcdunn.org/FusionWebsite/HTML/$ fusionstudentchurch.org/
So does anyone know what I need to do? I appreciate your advice!