| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
mike2009
Joined: 09 Aug 2007 Posts: 7
|
Posted: Thu Aug 09, 2007 1:14 am Post subject: i need help please |
|
|
hello
i have installed the mod but evrey page redirect to my home page
my forum is arabian langauge
the phpbb seo url http://www.eurospine2005.com/phpBB/
i hope some one help me to fix this problem |
|
|
| Back to top |
|
 |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3987
|
Posted: Thu Aug 09, 2007 7:19 am Post subject: Re: i need help please |
|
|
It looks like you have two phpBB install there. So I bet this is because of your .htaccess, you need two sets of rewriterule, one for each forum, and the phpBB3 one requires the phpBB path in it.
Post you .htaccess here in case you have troubles. |
_________________ phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible ! |
|
| Back to top |
|
 |
mike2009
Joined: 09 Aug 2007 Posts: 7
|
Posted: Thu Aug 09, 2007 7:54 am Post subject: Re: i need help please |
|
|
thanks fore help , i use vbseo with my vBulletin , and i was setup satble version of phpbb and droped the tables fore this database then i inastalled the new version of phpbb over the droped database thats all , and this my .htaccess
| Code: | <Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
# You could need to un-comment the following line
# Options +FollowSymlinks
RewriteEngine On
RewriteBase /
#########################################################
# PHPBB SEO REWRITE RULES #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 01/2006
#####################################################
# FORUMS PAGES
########################
# FORUM INDEX (un-comment if used)
# RewriteRule ^phpbb/index\.html$ /phpbb/index.php [QSA,L]
# FORUM
RewriteRule ^phpbb/[a-z0-9_-]*-f([0-9]+)(-([0-9]+))?/?$ /phpbb/viewforum.php?f=$1&start=$3 [QSA,L,NC]
# TOPIC
RewriteRule ^phpbb/[a-z0-9_-]*-f([0-9]+)/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /phpbb/viewtopic.php?f=$1&t=$2&start=$4 [QSA,L,NC]
# GLOBAL ANNOUNCES
RewriteRule ^phpbb/(announces/)?[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /phpbb/viewtopic.php?t=$2&start=$4 [QSA,L,NC]
# POST
RewriteRule ^phpbb/post([0-9]+)\.html$ /phpbb/viewtopic.php?p=$1 [QSA,L]
#PROFILES
RewriteRule ^phpbb/member([0-9]+)\.html$ /phpbb/memberlist.php?mode=viewprofile&u=$1 [QSA,L]
# THE TEAM
RewriteRule ^phpbb/the-team\.html$ /phpbb/memberlist.php?mode=leaders [QSA,L,NC]
# END PHPBB PAGES
#####################################################
|
|
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 3987
|
Posted: Thu Aug 09, 2007 6:18 pm Post subject: Re: i need help please |
|
|
As is, the .htaccess is supposed to be uploaded at the domain's root level, eg, one level above the phpBB/ folder.
You can either merge it with the one already there or play with the RewriteBase .
In phpBB/ folder try :
| Code: | <Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
# You could need to un-comment the following line
# Options +FollowSymlinks
RewriteEngine On
RewriteBase /phpBB/
#########################################################
# PHPBB SEO REWRITE RULES #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 01/2006
#####################################################
# FORUMS PAGES
########################
# FORUM INDEX (un-comment if used)
# RewriteRule ^index\.html$ index.php [QSA,L]
# FORUM
RewriteRule ^[a-z0-9_-]*-f([0-9]+)(-([0-9]+))?/?$ viewforum.php?f=$1&start=$3 [QSA,L,NC]
# TOPIC
RewriteRule ^[a-z0-9_-]*-f([0-9]+)/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ viewtopic.php?f=$1&t=$2&start=$4 [QSA,L,NC]
# GLOBAL ANNOUNCES
RewriteRule ^(announces/)?[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ viewtopic.php?t=$2&start=$4 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ viewtopic.php?p=$1 [QSA,L]
#PROFILES
RewriteRule ^member([0-9]+)\.html$ memberlist.php?mode=viewprofile&u=$1 [QSA,L]
# THE TEAM
RewriteRule ^the-team\.html$ memberlist.php?mode=leaders [QSA,L,NC]
# END PHPBB PAGES
##################################################### |
|
_________________ phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible ! |
|
| Back to top |
|
 |
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |