Bonjour à tous,
Je viens d'installer phpBB-SEO v0.7.0 en mode intermédiaire + Zéro Duplicate qui fonctionnent très bien, rien à redire si ce n'est bravo aux développeurs 8)
Mais j'ai un conflit entre le contenu du htaccess du site qui est sous joomla et celui de phpBB-SEO.
En effet, les règles de redirections qui ne devraient s'appliquer qu'au forum, s'appliquent également à des pages du site.
En d'autres termes, les liens de la home du site qui pointent directement vers des articles renvoient vers le forum (url inchangée) avec le message "Le forum que vous avez tenté d’atteindre n’existe pas." :?
Ex :http://www.rescueboule.com/soutenez-rb idem pour les liens blogs de catégories http://www.rescueboule.com/parrainage
Dans la mesure où les règles du forum sont dans le même htaccess que celle du site, j'ai tenté de les isoler avec le flag SKIP, mais cela ne fonctionne pas, à moins que j'ai fais une erreur.
En même temps, je suis habitué à bosser sur des htaccess beaucoup plus simples.
Voici mon htaccess :
Par contre un truc bizarre, dans l'acp du forum dans htaccess --> plus d'option, j'ai bien "Slash droite et gauche RegEx: mais n’apparaît pas "Emplacement du .htaccess" ...?
Si je désactive le SEF de joomla bien sur tout fonctionne correctement mais avec des url du type index.php?option=com_content&view=article&id=7&Itemid=118 :cry:
Voilà, si quelqu'un pouvait m'éclairer parce que là je suis ... largué :? d'avance merci !
Hébergeur OVH
Joomla 2.5.6 / phpBB 3.0.10
Joomla est à la racine www/
Le forum www/dossier
Le htaccess est à la racine www/
Paramètres SEO de Joomla : Réécriture d'URL en clair (SEF) : oui / Réécriture au "vol" des URL : oui
Je viens d'installer phpBB-SEO v0.7.0 en mode intermédiaire + Zéro Duplicate qui fonctionnent très bien, rien à redire si ce n'est bravo aux développeurs 8)
Mais j'ai un conflit entre le contenu du htaccess du site qui est sous joomla et celui de phpBB-SEO.
En effet, les règles de redirections qui ne devraient s'appliquer qu'au forum, s'appliquent également à des pages du site.
En d'autres termes, les liens de la home du site qui pointent directement vers des articles renvoient vers le forum (url inchangée) avec le message "Le forum que vous avez tenté d’atteindre n’existe pas." :?
Ex :http://www.rescueboule.com/soutenez-rb idem pour les liens blogs de catégories http://www.rescueboule.com/parrainage
Dans la mesure où les règles du forum sont dans le même htaccess que celle du site, j'ai tenté de les isoler avec le flag SKIP, mais cela ne fonctionne pas, à moins que j'ai fais une erreur.
En même temps, je suis habitué à bosser sur des htaccess beaucoup plus simples.
Voici mon htaccess :
Code:
# Lines That should already be in your .htacess
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
# You may need to un-comment the following lines
# Options +FollowSymlinks
# To make sure that rewritten dir or file (/|.html) will not load dir.php in case it exist
# Options -MultiViews
# REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
RewriteEngine On
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
# RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
# REWRITE BASE
RewriteBase /
# HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
RewriteCond %{HTTP_HOST} !^www\.rescueboule\.com$ [NC]
RewriteRule ^(.*)$ http://www.rescueboule.com/$1 [QSA,L,R=301]
# DO NOT GO FURTHER IF THE REQUESTED FILE / DIR DOES EXISTS
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
#####################################################
# PHPBB SEO REWRITE RULES ALL MODES
#####################################################
# AUTHOR : dcz www.phpbb-seo.com
# STARTED : 01/2006
#################################
# FORUMS PAGES
###############
# FORUM INDEX
RewriteRule ^forum\.html$ /ForumV2/index.php [QSA,L,NC]
# FORUM ALL MODES
RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)/?(page([0-9]+)\.html)?$ /ForumV2/viewforum.php?f=$2&start=$4 [QSA,L,NC]
# TOPIC WITH VIRTUAL FOLDER ALL MODES
RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /ForumV2/viewtopic.php?f=$2&t=$4&start=$6 [QSA,L,NC]
# TOPIC WITHOUT FORUM ID & DELIM ALL MODES
RewriteRule ^([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /ForumV2/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
# PHPBB FILES ALL MODES
RewriteRule ^ressources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /ForumV2/download/file.php?id=$2&t=$1 [QSA,L,NC]
# PROFILES ALL MODES WITH ID
RewriteRule ^(membre|[a-z0-9_-]*-u)([0-9]+)\.html$ /ForumV2/memberlist.php?mode=viewprofile&u=$2 [QSA,L,NC]
# USER MESSAGES ALL MODES WITH ID
RewriteRule ^(membre|[a-z0-9_-]*-u)([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /ForumV2/search.php?author_id=$2&sr=$3&start=$5 [QSA,L,NC]
# GROUPS ALL MODES
RewriteRule ^(groupe|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /ForumV2/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ /ForumV2/viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^sujets-actifs(-([0-9]+))?\.html$ /ForumV2/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^sans-reponses(-([0-9]+))?\.html$ /ForumV2/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^nouveaux-messages(-([0-9]+))?\.html$ /ForumV2/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# UNREAD POSTS
RewriteRule ^non-lu(-([0-9]+))?\.html$ /ForumV2/search.php?search_id=unreadposts&start=$2 [QSA,L,NC]
# THE TEAM
RewriteRule ^equipe\.html$ /ForumV2/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES
# FORUM WITHOUT ID & DELIM ALL MODES
# THESE THREE LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-z0-9_-]+)/?(page([0-9]+)\.html)?$ /ForumV2/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
# FIX RELATIVE PATHS : FILES
RewriteRule ^ForumV2/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /ForumV2/$1 [QSA,L,NC,R=301]
# FIX RELATIVE PATHS : IMAGES
RewriteRule ^ForumV2/.+/(styles/.*|images/.*)/$ /ForumV2/$1 [QSA,L,NC,R=301]
# END PHPBB PAGES
#####################################################
##
# @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
##
##
# 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
# OVH vers PHP5
SetEnv PHP_VER 5
## Mod_rewrite in use.
#RewriteEngine On
#RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$
#RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
# Register Globals : Off
SetEnv REGISTER_GLOBALS 0
# Magic Quotes
SetEnv MAGIC_QUOTES 0
## 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.
## Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.
#
## End - Custom redirects
##
# 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.
#
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]
#
## End - Joomla! core SEF Section.
Par contre un truc bizarre, dans l'acp du forum dans htaccess --> plus d'option, j'ai bien "Slash droite et gauche RegEx: mais n’apparaît pas "Emplacement du .htaccess" ...?
Si je désactive le SEF de joomla bien sur tout fonctionne correctement mais avec des url du type index.php?option=com_content&view=article&id=7&Itemid=118 :cry:
Voilà, si quelqu'un pouvait m'éclairer parce que là je suis ... largué :? d'avance merci !
Hébergeur OVH
Joomla 2.5.6 / phpBB 3.0.10
Joomla est à la racine www/
Le forum www/dossier
Le htaccess est à la racine www/
Paramètres SEO de Joomla : Réécriture d'URL en clair (SEF) : oui / Réécriture au "vol" des URL : oui