Back to top

Autore Topic: [Risolto] Problema .htaccess  (Letto 1718 volte)

Offline Realise

  • Nuovo arrivato
  • *
  • Post: 5
    • Mostra profilo
[Risolto] Problema .htaccess
« il: 04 Mag 2010, 20:48:25 »
Buona sera a tutti, ho letto numerosi topic ma non riesco a risolvere il problema, attivando nella configurazione Seo Friendly URL e Aggiungi il suffisso agli URL, mi si vede solo la home, nelle altre pagine solo il testo ma il template no, ed a ogni ulteriore click si aggiunge un nuovo index.php all'url (esempio: click 1 pagina Contatti www.miosito.com/index.php/contatti.html, click 2 pagina Contatti www.miosito.com/index.php/index.php/contatti.html)

Attivando il mod_rewrite la home continua a funzionare ma nelle altre pagine viene un bel Internal Server Error :-\
Il fatto è che l'url viene riscritto correttamente nel browser ma secondo me non trova le pagine in joomla, potrebbe essere un problema del RewriteBase?

Senza attivare il mod_rewrite ho provato ad aggiungere una stringa al .htaccess (RewriteRule ^index.php/(.*)$ /$1 [R=301,L]) anche questa volta l'url viene riscritto correttamente, ma da errore.

Il mio hoster ha detto che il mod_rewrite è attivo, se avete qualche domanda ditemi che gliela giro ^^

Grazie per l'aiuto ;)

Questo è il mio file .htaccess:


Codice: [Seleziona]
##
# @version $Id: htaccess.txt 13415 2009-11-03 15:53:25Z ian $
# @package Joomla
# @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
#  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
#RewriteRule ^index.php/(.*)$ /$1 [R=301,L]
########## 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!
#
## Deny access to extension xml files (uncomment out to activate)
#<Files ~ "\.xml$">
#Order allow,deny
#Deny from all
#Satisfy all
#</Files>
## End of deny access to extension xml files
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via 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.php [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 /www


########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section
« Ultima modifica: 09 Mag 2010, 16:43:10 da maicolstaip »

Offline santograz

  • Abituale
  • ****
  • Post: 907
  • Sesso: Maschio
    • Mostra profilo
Re:Problema .htaccess
« Risposta #1 il: 04 Mag 2010, 23:08:18 »
Ciao,
domandina (stasera ho le fisse delle domandine):

perchè hai settato "aggiungi un suffisso agli URL"? Prova a toglierlo...
Un esperto mi ha detto:"Per avere un sito web sicuro, installalo su di un server locale, poi spegnilo e stacca i cavi". Mi hanno rubato il computer.

Offline Realise

  • Nuovo arrivato
  • *
  • Post: 5
    • Mostra profilo
Re:Problema .htaccess
« Risposta #2 il: 05 Mag 2010, 13:17:10 »
Anche togliendolo non cambia nulla :(

Offline Realise

  • Nuovo arrivato
  • *
  • Post: 5
    • Mostra profilo
Re:Problema .htaccess
« Risposta #3 il: 09 Mag 2010, 16:14:13 »
Risolto, se a qualcuno interessa ho usato questo htaccess e ora funziona tutto :)


Codice: [Seleziona]
##
# @version $Id: htaccess.txt 1570 2005-12-29 05:53:33Z eddieajau $
# @package Joomla
# @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##

Options +FollowSymLinks

#
#  mod_rewrite in use
#

RewriteEngine On

##
## NOTE!
## When using multiple Joomla sites or other web applications in sub-folders,
## you must explicitly turn the RewriteEngine off or use the settings
## recommended for the application
##

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

 RewriteBase /

#
#  Rules
#

RewriteCond %{REQUEST_FILENAME} !\.(jpg|jpeg|gif|png|css|js|pl|txt)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php

 



Web Design Bolzano Kreatif