Titre: Réécriture d'Urls Site/Forum
Posté par: Mammouth le le 30-01-2013 a 20:00:57
Bonsoir messieurs.
Bon écoutez je suis perdu j'espère etre dans la bonne partie. Je viens de créer un site d'infos football qui se trouve à l'adresse : http://www.footballsupps.com/actualites/ (crée sur joomla) Mon forum lui se trouve à l'adresse : http://www.footballsupps.com/forum.html Ma tante avait fait une redirection sur le .htaccess pour que http://www.footballsupps.com conduise au forum il y a de ça un an. A l'heure actuelle je souhaiterai que http://www.footballsupps.com conduise plutot au site et dans le meilleur des cas qu'il n'y ait plus le /actualites au site. Quelqu'un a t'il une idée pour effectuer l'opération ? Le problème c'est qu'avec la réecriture d'url SEO vas pas y avoir problème sur la redirection des salons style http://www.footballsupps.com/ligue1/ et les topics ca va pas coincé vu qu'il n'y a pas le /forum dans l'adresse ? Pour info j'utilise ce mode SEO : Avancé - 0.6.8
Voici mon fichier .htaccess sorry j'ai pas réussi à l'héberger ca prend pas ce type de fichier apparemment
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\.footballsupps\.com$ [NC] # RewriteRule ^(.*)$ http://www.footballsupps.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$ /forum/index.php [QSA,L,NC] # FORUM ALL MODES RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)/?(page([0-9]+)\.html)?$ /forum/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$ /forum/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$ /forum/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC] # PHPBB FILES ALL MODES RewriteRule ^ressources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /forum/download/file.php?id=$2&t=$1 [QSA,L,NC] # PROFILES ALL MODES WITH ID RewriteRule ^(membre|[a-z0-9_-]*-u)([0-9]+)\.html$ /forum/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$ /forum/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$ /forum/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC] # POST RewriteRule ^post([0-9]+)\.html$ /forum/viewtopic.php?p=$1 [QSA,L,NC] # ACTIVE TOPICS RewriteRule ^sujets-actifs(-([0-9]+))?\.html$ /forum/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC] # UNANSWERED TOPICS RewriteRule ^sans-reponses(-([0-9]+))?\.html$ /forum/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC] # NEW POSTS RewriteRule ^nouveaux-messages(-([0-9]+))?\.html$ /forum/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC] # UNREAD POSTS RewriteRule ^non-lu(-([0-9]+))?\.html$ /forum/search.php?search_id=unreadposts&start=$2 [QSA,L,NC] # THE TEAM RewriteRule ^equipe\.html$ /forum/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)?$ /forum/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC] # FIX RELATIVE PATHS : FILES RewriteRule ^forum/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /forum/$1 [QSA,L,NC,R=301] # FIX RELATIVE PATHS : IMAGES RewriteRule ^forum/.+/(styles/.*|images/.*)/$ /forum/$1 [QSA,L,NC,R=301] # END PHPBB PAGES ##################################################### ## ajout sylvie ## rewrite the index file in your root directory ## ## this should work, regardless if you have index.html, index.htm, ## or index.php RewriteRule ^index\.(htm|html|php) http://www.footballsupps.com [R=301,L] ## match condition: skip any www requests ## or another way of saying this - match anything that doesn't start ## with www RewriteCond %{HTTP_HOST} !^www\..* ## change any requests to www.yourdomain.com ## combined with the above RewriteCond means any ## non-www requests are redirected to www.yourdomain.com ## the %{REQUEST_URI} appends whatever url to www.yourdomain.com RewriteRule ^.*$ http://www.footballsupps.com%{REQUEST_URI} [R=301,L] RewriteCond %{REQUEST_URI} !^/forum RewriteRule ^(.*)$ forum/$1
DirectoryIndex index.php index.html index.phtml /erreurs/403.php |
|
Bref je suis paumé help please. Mille excuses si je me suis trompé de salon. |
Forum-webmaster | Actionné par YaBB SE
© 2001-2003, YaBB SE Dev Team. Tous droits réservés.
|