Bonjour à tous,
J'ai un petit souci avec le mod phpBB SEO que je viens d'installer, je suppose que cela se situe au niveau du .htaccess.
Je vais essayer d'expliquer cela clairement
J'ai un site web et un forum stocké chez mon hébergeur. Le dossier "www" contient donc 2 dossiers :
1) "site"
2) "forum"
J'ai créé un sous domaine pour mon forum "forum.monsite.com" qui pointe donc vers mon "dossier-forum"
après avoir installé le mod phpBB SEO pour mon forum, je teste, et voilà ce qu'il me sort comme url en cliquant sur la 1ère catégorie: "http://localhost/forum/nom-catégorie1-réécrite/"
Ce qui me donne un "page web inaccessible comme résultat.
Bref, je suppose que le problème vient du htaccess mais je ne sais absolument pas comment paramètrer cela.
A noter que j'ai déjà un .htaccess à la racine de "www", que voici :
Voici maintenant le .htaccess que phpBB SEO m'a généré (à placer dans le dossier "forum") :
Qu'est-ce que je dois changer exactement ? Comment ?
D'avance merci
J'ai un petit souci avec le mod phpBB SEO que je viens d'installer, je suppose que cela se situe au niveau du .htaccess.
Je vais essayer d'expliquer cela clairement
J'ai un site web et un forum stocké chez mon hébergeur. Le dossier "www" contient donc 2 dossiers :
1) "site"
2) "forum"
J'ai créé un sous domaine pour mon forum "forum.monsite.com" qui pointe donc vers mon "dossier-forum"
après avoir installé le mod phpBB SEO pour mon forum, je teste, et voilà ce qu'il me sort comme url en cliquant sur la 1ère catégorie: "http://localhost/forum/nom-catégorie1-réécrite/"
Ce qui me donne un "page web inaccessible comme résultat.
Bref, je suppose que le problème vient du htaccess mais je ne sais absolument pas comment paramètrer cela.
A noter que j'ai déjà un .htaccess à la racine de "www", que voici :
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^monsite\.be$ [OR]
RewriteCond %{HTTP_HOST} ^www\.monsite\.be$
RewriteRule ^/?$ "http\:\/\/www\.monsite\.com\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^monsite\.fr$ [OR]
RewriteCond %{HTTP_HOST} ^www\.monsite\.fr$
RewriteRule ^/?$ "http\:\/\/www\.monsite\.com\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^monsite\.net$ [OR]
RewriteCond %{HTTP_HOST} ^www\.monsite\.net$
RewriteRule ^/?$ "http\:\/\/www\.monsite\.com\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^monsite\.info$ [OR]
RewriteCond %{HTTP_HOST} ^www\.monsite\.info$
RewriteRule ^/?$ "http\:\/\/www\.monsite\.com\/" [R=301,L]
Voici maintenant le .htaccess que phpBB SEO m'a généré (à placer dans le dossier "forum") :
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 /forum/
# HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
# RewriteCond %{HTTP_HOST} !^localhost$ [NC]
# RewriteRule ^(.*)$ http://localhost/forum/$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 WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
# RewriteRule ^forum\.html$ index.php [QSA,L,NC]
# FORUM ALL MODES
RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)/?(page([0-9]+)\.html)?$ 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$ 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$ viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
# PHPBB FILES ALL MODES
RewriteRule ^ressources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ download/file.php?id=$2&t=$1 [QSA,L,NC]
# PROFILES ALL MODES WITH ID
RewriteRule ^(membre|[a-z0-9_-]*-u)([0-9]+)\.html$ 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$ 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$ memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^sujets-actifs(-([0-9]+))?\.html$ search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^sans-reponses(-([0-9]+))?\.html$ search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^nouveaux-messages(-([0-9]+))?\.html$ search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# UNREAD POSTS
RewriteRule ^non-lu(-([0-9]+))?\.html$ search.php?search_id=unreadposts&start=$2 [QSA,L,NC]
# THE TEAM
RewriteRule ^equipe\.html$ 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)?$ viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
# FIX RELATIVE PATHS : FILES
RewriteRule ^.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ $1 [QSA,L,NC,R=301]
# FIX RELATIVE PATHS : IMAGES
RewriteRule ^.+/(styles/.*|images/.*)/$ $1 [QSA,L,NC,R=301]
# END PHPBB PAGES
#####################################################
Qu'est-ce que je dois changer exactement ? Comment ?
D'avance merci