Erreur 403 Forbidden mais pourquoi ?

WRInaute discret
Bonjour,

je pense avoir un probleme de blocage avec mon site joomla, mais je ne sais pas d'où ca peut venir.
voici le blocage
http://validator.w3.org/check?uri=h...(detect+automatically)&doctype=Inline&group=0

il n'y a pourtant il n'y a pas d'erreur sur la page
http://validator.w3.org/check?uri=http://www.rgdesign.fr/;No200=1

et mon fichier robots.txt me parait correct

Code:
User-agent: *
Disallow: /administrator/
Disallow: /cache/
Disallow: /cli/
Disallow: /components/
Disallow: /images/
Disallow: /includes/
Disallow: /installation/
Disallow: /language/
Disallow: /libraries/
Disallow: /logs/
Disallow: /media/
Disallow: /modules/
Disallow: /plugins/
Disallow: /templates/
Disallow: /tmp/
Disallow: /SITES/
 
S
StefouFR
Guest
Bonjour,

il faut modifier :
<img src="plugins/system/jat3/jat3/base-themes/default/blocks/ie6/note.png" title="" alt="" align="left" />
par :
<img src="plugins/system/jat3/jat3/base-themes/default/blocks/ie6/note.png" title="" alt="" />
Et faire une règle dans la classe "note" ou "clearfix" si nécessaire pour un alignement à droite.


Sinon peux-tu copier ton .htaccess ici s'il te plait ?
 
WRInaute discret
Bonjour,

et merci pour ta réponse,

modification faite.

voici mon htaccess :

Code:
SetEnv REGISTER_GLOBALS 0

SetEnv MAGIC_QUOTES 1
SetEnv PHP_VER 5

SetEnv IONCUBE 1
SetEnv ZEND_OPTIMIZER 0

##
# @package		Joomla
# @copyright	Copyright (C) 2005 - 2012 Open Source Matters. All rights reserved.
# @license		GNU General Public License version 2 or later; see LICENSE.txt
##

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

## Mod_rewrite in use.

RewriteEngine On

RewriteCond %{HTTP_HOST} !^www\.rgdesign\.fr [NC]
RewriteRule (.*) http://www.rgdesign.fr/$1 [QSA,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!
#
# 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)([^s]*s)+cript.*(>|%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})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.

# RewriteBase /

## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
 
S
StefouFR
Guest
Copie/colle ton .htaccess pour en faire une sauvegarde.


Ensuite dans ton .htaccess modifie :
RewriteCond %{HTTP_HOST} !^www\.rgdesign\.fr [NC]
RewriteRule (.*) http://www.rgdesign.fr/$1 [QSA,R=301,L]
par :
RewriteCond %{HTTP_HOST} rgdesign.fr
RewriteRule (.*) http://www.rgdesign.fr/ [R=301]


Tu me dis ce que ça te donne sur W3C et vérifie en premier si ta règle fonctionne toujours. Normalement ton site est accessible uniquement avec les www et si tu mets juste rgdesign.fr tu as un redirect 301 vers http://www.rgdesign.fr.


Reviens vers moi si ça bug.
 
WRInaute discret
Je viens d'apporter la modification et ceci n'affiche plus le site, j'ai donc remis comme c'etait ...

- j'ai changé de theme
- j'ai mis une page vierge en page d'accueil
- j'ai enlevé toutes le regles du fichiers htaccess

et toujours ce probleme ...
peut être changer d'hébergement ? ...
 
S
StefouFR
Guest
Sans ces lignes :

RewriteCond %{HTTP_HOST} !^www\.rgdesign\.fr [NC]
RewriteRule (.*) http://www.rgdesign.fr/$1 [QSA,R=301,L]

Tu as le même résultat ?



Etrange, frenchement je ne sais plus quoi te proposer. Attend les autres avis, remet ton .htaccess d'origine.
 
WRInaute discret
Je pense que le probleme est general parceque j'ai le meme message d'erreur meme pour les pages d'interieur. et le blog.
 
S
StefouFR
Guest
Oui ça doit venir ton hébergeur.

Cherche un domaine voisin et test son site dans l'outil W3C pour être fixé.
 
WRInaute accro
De plus, la cause doit surement être notée quelque part noir sur blanc (dans les logs)...
 
Discussions similaires
Haut