Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

home.html > Index.html

Quote Reply
home.html > Index.html
How can I make the program to convert home.html to any other name beside index.html?

Thanx!..

Quote Reply
Re: home.html > Index.html In reply to
Change the $LINKS{build_extension} in the Links.pm file.

Regards,

Eliot Lee
Quote Reply
Re: home.html > Index.html In reply to
I couldn't locate $LINKS{build_extension} in the Links.pm file.

Quote Reply
Re: home.html > Index.html In reply to
Look again...the following variables ARE in the Links.pm file!

Code:

$LINKS{build_index}
$LINKS{build_extension}


Change the first one to whatever file and extension you want...the default config is:

Code:

$LINKS{build_index} = "index.html";


AND the default config for the second one is:

Code:

$LINKS{build_extension} = ".html";


Change these variable configs to what you want to use!

Regards,

Eliot Lee