Back to top

Autore Topic: cambio home page [RISOLTO]  (Letto 6468 volte)

Offline matteo78it

  • Nuovo arrivato
  • *
  • Post: 8
    • Mostra profilo
cambio home page [RISOLTO]
« il: 20 Mar 2011, 08:10:00 »
Ciao a tutti !

Ho installato joomla 1.6 sul mio sito (www.studiomc.eu) senza troppi inconvenienti . Soltanto quando vado a caricare la home page mi appaere quella joomla e non la mia index . Come posso rimediare ? Tutte le guide che ho trovato si riferiscono alla versione 1.5 o inferiore e i comandi come i menu sono differenti .
« Ultima modifica: 22 Mar 2011, 17:39:33 da matteo78it »

Offline tomtomeight

  • Global Moderator
  • Fuori controllo
  • ********
  • Post: 32046
  • Sesso: Maschio
  • Gli automatismi aiutano ma non insegnano nulla.
    • Mostra profilo
Re:cambio home page
« Risposta #1 il: 20 Mar 2011, 08:12:16 »
Ciao
E quale sarebbe invece la tua index?

Offline matteo78it

  • Nuovo arrivato
  • *
  • Post: 8
    • Mostra profilo
Re:cambio home page
« Risposta #2 il: 20 Mar 2011, 09:41:15 »
index.html

Offline tomtomeight

  • Global Moderator
  • Fuori controllo
  • ********
  • Post: 32046
  • Sesso: Maschio
  • Gli automatismi aiutano ma non insegnano nulla.
    • Mostra profilo
Re:cambio home page
« Risposta #3 il: 20 Mar 2011, 10:53:45 »
Eh ma come la hai fatta

Offline matteo78it

  • Nuovo arrivato
  • *
  • Post: 8
    • Mostra profilo
Re:cambio home page
« Risposta #4 il: 20 Mar 2011, 11:53:36 »
Cioè ?  :o

Offline tomtomeight

  • Global Moderator
  • Fuori controllo
  • ********
  • Post: 32046
  • Sesso: Maschio
  • Gli automatismi aiutano ma non insegnano nulla.
    • Mostra profilo
Re:cambio home page
« Risposta #5 il: 20 Mar 2011, 12:13:08 »
Cioè da dove esce fuori la tua index.html

Offline matteo78it

  • Nuovo arrivato
  • *
  • Post: 8
    • Mostra profilo
Re:cambio home page
« Risposta #6 il: 20 Mar 2011, 13:36:30 »
Scusa ma sono nuvo di joomla ed ho qualche infarinatura di html .

Ti dispiacerebbe essere più chiaro ?

Offline tomtomeight

  • Global Moderator
  • Fuori controllo
  • ********
  • Post: 32046
  • Sesso: Maschio
  • Gli automatismi aiutano ma non insegnano nulla.
    • Mostra profilo
Re:cambio home page
« Risposta #7 il: 20 Mar 2011, 13:48:43 »
Mi sembra di essere stato chiaro, da dove dovrebbe uscire la tua pagina e perche'  ti aspetti la tua invece di quella di joomla?

Offline Fulvio B.

  • Esploratore
  • **
  • Post: 131
  • Sesso: Maschio
  • Heavy metal goes on forever!
    • Mostra profilo
Re:cambio home page
« Risposta #8 il: 20 Mar 2011, 14:13:08 »
Ciao matteo78it,
è capitato anche a me di dover far apparire una pagina HTML prima della index.php di Joomla.

Io sono stato fortunato perchè è bastato piazzare una pagina INDEX.HTML sull'ftp e il WebServer mi fa vedere prima l'HTML del PHP.
Quindi ti direi di chiedere al supporto del tuo servizio di Hosting perchè, da quanto ne so, dipende dalla configurazione delle proprietà del web server.
Un saluto!

Offline tomtomeight

  • Global Moderator
  • Fuori controllo
  • ********
  • Post: 32046
  • Sesso: Maschio
  • Gli automatismi aiutano ma non insegnano nulla.
    • Mostra profilo
Re:cambio home page
« Risposta #9 il: 20 Mar 2011, 14:28:07 »
Stavo cercando di capire se voleva una intropage, ma non credo.
Comunque se il server da' priorita' alla index.php per cambiare basta aggiungere nel file .htaccess  documentroot index.html, magari fai una ricerca in rete per la corretta sintassi, ora non ricordo bene.

Offline matteo78it

  • Nuovo arrivato
  • *
  • Post: 8
    • Mostra profilo
Re:cambio home page
« Risposta #10 il: 22 Mar 2011, 14:51:44 »
Il servizio assistenza mi ha monificato il file .htacces che posto qui se a qualcuno servisse :

Codice: [Seleziona]
##
# @version $Id: htaccess.txt 20196 2011-01-09 02:40:25Z ian $
# @package Joomla
# @copyright Copyright (C) 2005 - 2011 Open Source Matters. All rights reserved.
# @license GNU General Public License version 2 or later; see LICENSE.txt
##

##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
##

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

## Mod_rewrite in use.

RewriteEngine On

## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site block out the operations listed below
# This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.html[F,L]
#
## End - Rewrite rules to block out some common exploits.

##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

# RewriteBase /

## Begin - Joomla! core SEF Section.
#
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_URI} !^/index.html
RewriteCond %{REQUEST_URI} (/component/) [OR]
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.html
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
## End - Joomla! core SEF Section.

 Con questo reisco a visualizzare correttemente il sito originale
« Ultima modifica: 22 Mar 2011, 17:48:32 da 56francesco »

Offline Beppegoal

  • Esploratore
  • **
  • Post: 76
  • Sesso: Maschio
  • popstar
    • Mostra profilo
Re:cambio home page
« Risposta #11 il: 22 Mar 2011, 17:34:35 »
Se il problema è risolto puoi inserire [RISOLTO] nel titolo del thread, così da risultare facilmente individuabile a chi dovesse avere il tuo stesso problema? Grazie mille!

Offline matteo78it

  • Nuovo arrivato
  • *
  • Post: 8
    • Mostra profilo
Re:cambio home page [RISOLTO]
« Risposta #12 il: 22 Mar 2011, 17:40:01 »
ecco fatto !!  ;) ;D

 



Web Design Bolzano Kreatif