Hello!
I have a coppermine gallery with "breadcrumb/catlist/alblist" in the main content in the configuration page.
Then, in the "breadcum" in my list of categories appear: "Inicio > Fotos Discotecas" and the Index page (inicio in spanish) is linked to /fotos/index.php - Can I change this link to /fotos/ wihitout /index.php ? This change will be better for SEO indexing of my gallery because /fotos/ and /fotos/index.php is different pages for google...
Moreover, I want put a different index.php in my MAIN page, but I have saw that this index file is used in all categories... and I wnat change ONLY my MAIN PAGE, no the other categories index pages... Then I think use a index.html for example and put with .htaccess the file index.html with MAIN FIRST file page that apache read in the directory. Then other categories will be read index.php correctly. Do you understand me?
Can you help me?? Sorry for my english and thousand thanks in advance!
The same question more simply
Can I set the index's link, to index.html instead index.php ?
Regards from spain!
Edit include/functions.inc.php, find // Add the Home link to breadcrumb
$breadcrumb_links[0] = '<a href="index.php">'.$lang_list_categories['home'].'</a>';
$BREADCRUMB_TEXTS[0] = $lang_list_categories['home'];
and edit as you see fit.
Very thanks GauGau!
I change <a href="index.php"> for a href="/fotos/"> and I wait that my SEO indexing will be better
Thanks again!