Help With Link Redirect

Status
Not open for further replies.

Rgamez

New Member
Messages
68
Reaction score
0
Points
0
How do I get my link on my website to point to my Yabb forum, instead of my website?? I have used Reptile SiteBuilder to build my site, but how do you change where the link goes???
 

garrettroyce

Community Support
Community Support
Messages
5,611
Reaction score
249
Points
63
You need to look at the code for the link. It should look like this:
Code:
<a href="http://domain.com">This is a link to domain.com</a>

or this:
Code:
<a href="directory/anotherdir/somefile.html">This is a link to another page on my site</a>

If your Yabb is on your x10 account with your sitebuilder site, then you use example #2. If your Yabb is somewhere else, you need to use example #1. Technically, you can always use #2, but if you change your domain name (by changing hosts, or using a different domain) you will have to change every link on your site.
 

Rgamez

New Member
Messages
68
Reaction score
0
Points
0
You need to look at the code for the link. It should look like this:
Code:
<a href="http://domain.com">This is a link to domain.com</a>

or this:
Code:
<a href="directory/anotherdir/somefile.html">This is a link to another page on my site</a>

If your Yabb is on your x10 account with your sitebuilder site, then you use example #2. If your Yabb is somewhere else, you need to use example #1. Technically, you can always use #2, but if you change your domain name (by changing hosts, or using a different domain) you will have to change every link on your site.

Is this within the html code for the index.php file, or within the code for that single link???
 
Last edited:

garrettroyce

Community Support
Community Support
Messages
5,611
Reaction score
249
Points
63
Is this within the html code for the index.php file, or within the code for that single link???

In the php file. Do a search for <a href=" and you should find it.
 
Status
Not open for further replies.
Top