Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Build Home.html

Quote Reply
Build Home.html
can I change where it builds the index page in LINKS SQL? and how do I do it, I search for this question, but found nothing.
www.sagnetwork.com - Internet Portal
Quote Reply
Re: [tazmear] Build Home.html In reply to
Hi,

I think you mean the home page.

At admin home panel, choose "Setup" on top and "Path and URL" link on left. Then change the build_root_path and build_root_url respectively.

Hope that helps!

Cheers,

Dat

Programming and creating plugins and templates
Blog
Quote Reply
Re: [tandat] Build Home.html In reply to
thanks man for the respond.
www.sagnetwork.com - Internet Portal
Quote Reply
Re: [tandat] Build Home.html In reply to
what I would like to do is build all pages in a directory, but have the index page in the root directory, is there a way to do this, I tried it the way you explained but it builds everything in the directory even the index file.
www.sagnetwork.com - Internet Portal
Quote Reply
Re: [tazmear] Build Home.html In reply to
Hi,

What are your root url and current build_root_url(and build_root_path equivalent)? I guess they are different.

Hope that helps.

Cheers,
Quote Reply
Re: [tandat] Build Home.html In reply to
Hi,

I build into a directory call search, but it also puts my index page in that directory, so I had to create a new index page and put it in the root directory. Is there a way to do this without having to ftp in and copy it to the root?
www.sagnetwork.com - Internet Portal
Quote Reply
Re: [tazmear] Build Home.html In reply to
Hi,

You could re-write rule it =)

In the / part of your site, add this file (.htaccess):

Code:
RewriteEngine On

RewriteRule ^/?$ /search/index.html [L]
RewriteRule ^index\.html$ /search/index.html [L]

Then, when someone calls:

http://www.yoursite.com ..or http://www.yoursite.com/ or http://www.yoursite.com/index.html

...it will actually load:

http://www.yoursite.com/search/index.html

Cool

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Build Home.html In reply to
nice, thanks again Andy.
www.sagnetwork.com - Internet Portal