| :: |
| Author |
Message |
boak_edogawa
Joined: 12 Aug 2008 Posts: 9
|
Posted: Tue Aug 12, 2008 11:24 am Post subject: after install and activate the SEO, my page got Error 404 |
|
|
Dear All,
after installing the latest SEO (Advanced phpBB3 SEO mod Rewrite 0.4.4)
for phpbb3.0.2
and activating the mod in ACP, I've got Error 404
my .htaccess is located in Forum folder and root folder
but still does not work,
here is my htaccess :
any solution?
please kindly take a time to analyze my site at:
http://vixyclub.net63.net/goinside/Forum/
thanks in advance |
Last edited by boak_edogawa on Wed Aug 13, 2008 2:53 am; edited 1 time in total |
|
| Back to top |
|
 |
|
 |
boak_edogawa
Joined: 12 Aug 2008 Posts: 9
|
Posted: Tue Aug 12, 2008 11:39 am Post subject: Re: after install and activate the SEO, my page got Error 404 |
|
|
wow when I activate the 'virtual root'
it works right now...ehhehehe thanks  |
|
|
| Back to top |
|
 |
boak_edogawa
Joined: 12 Aug 2008 Posts: 9
|
Posted: Wed Aug 13, 2008 2:07 am Post subject: Re: after install and activate the SEO, my page got Error 404 |
|
|
I am sorry, but it is actually not work
when I implemented in my real site in http://big4bikes.co.cc
the link shown like this:
-http://big4bikes.co.cc/selamat-datang-b4b-f25.html?sid=ed01d21bcd58032377416fd9438d0017
how can I remove : ?sid=ed01d21bcd58032377416fd9438d0017
so the link will be -http://big4bikes.co.cc/selamat-datang-b4b-f25.html
thanks |
Last edited by boak_edogawa on Wed Aug 13, 2008 4:15 am; edited 1 time in total |
|
| Back to top |
|
 |
boak_edogawa
Joined: 12 Aug 2008 Posts: 9
|
Posted: Wed Aug 13, 2008 2:23 am Post subject: Re: after install and activate the SEO, my page got Error 404 |
|
|
here is my phpbb_cache:
<?php
/**
* phpBB_SEO Class
* www.phpBB-SEO.com
* @package Advanced phpBB3 SEO mod Rewrite
*/
if (!defined('IN_PHPBB')) {
exit;
}
$this->cache_config['settings'] = array ( 'url_rewrite' => true, 'profile_inj' => false, 'profile_vfolder' => false, 'profile_noids' => false, 'rewrite_usermsg' => false, 'rem_sid' => false, 'rem_hilit' => true, 'rem_small_words' => false, 'virtual_folder' => true, 'virtual_root' => true, 'cache_layer' => true, 'rem_ids' => false, 'copyrights' => array ( 'img' => true, 'txt' => '', 'title' => '', ), );
$this->cache_config['forum'] = array ( );
?> |
|
|
| Back to top |
|
 |
boak_edogawa
Joined: 12 Aug 2008 Posts: 9
|
Posted: Wed Aug 13, 2008 2:24 am Post subject: Re: after install and activate the SEO, my page got Error 404 |
|
|
this is my .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 line
# Options +FollowSymlinks
# REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
RewriteEngine On
# REWRITE BASE
RewriteBase /
# HERE IS A GOOD PLACE TO ADD THE WWW PREFIXE REDIRECTION
#####################################################
# PHPBB SEO REWRITE RULES - ADVANCED
#####################################################
# AUTHOR : dcz www.phpbb-seo.com
# STARTED : 01/2006
#################################
# FORUMS PAGES
###############
# FORUM INDEX
RewriteRule ^/forum\.html$ /Forum/index.php [QSA,L,NC]
# FORUM
RewriteRule ^/[a-z0-9_-]*-f([0-9]+)/?(page([0-9]+)\.html)?$ /Forum/viewforum.php?f=$1&start=$3 [QSA,L,NC]
# TOPIC WITH VIRTUAL FOLDER
RewriteRule ^/[a-z0-9_-]*-f([0-9]+)/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /Forum/viewtopic.php?f=$1&t=$2&start=$4 [QSA,L,NC]
# GLOBAL ANNOUNCES WITH VIRTUAL FOLDER
RewriteRule ^/announces/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /Forum/viewtopic.php?t=$1&start=$3 [QSA,L,NC]
# TOPIC WITHOUT FORUM ID & DELIM
RewriteRule ^/([a-z0-9_-]*)/?[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /Forum/viewtopic.php?forum_uri=$1&t=$2&start=$4 [QSA,L,NC]
# PROFILES SIMPLE
RewriteRule ^/member([0-9]+)\.html$ /Forum/memberlist.php?mode=viewprofile&u=$1 [QSA,L,NC]
# USER MESSAGES SIMPLE
RewriteRule ^/member([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /Forum/search.php?author_id=$1&sr=$2&start=$4 [QSA,L,NC]
# GROUPS SIMPLE
RewriteRule ^/group([0-9]+)(-([0-9]+))?\.html$ /Forum/memberlist.php?mode=group&g=$1&start=$3 [QSA,L,NC]
# POST
RewriteRule ^/post([0-9]+)\.html$ /Forum/viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^/active-topics(-([0-9]+))?\.html$ /Forum/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^/unanswered(-([0-9]+))?\.html$ /Forum/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^/newposts(-([0-9]+))?\.html$ /Forum/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# THE TEAM
RewriteRule ^/the-team\.html$ /Forum/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES
# FORUM WITHOUT ID & DELIM
# 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]
# END PHPBB PAGES
#####################################################
|
|
|
|
| Back to top |
|
 |
boak_edogawa
Joined: 12 Aug 2008 Posts: 9
|
Posted: Wed Aug 13, 2008 7:41 am Post subject: Re: after install and activate the SEO, my page got Error 404 |
|
|
hello????  |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
boak_edogawa
Joined: 12 Aug 2008 Posts: 9
|
Posted: Thu Aug 14, 2008 1:49 am Post subject: Re: after install and activate the SEO, my page got Error 404 |
|
|
so how I can remove it? I am very newbie
can you give me the step by step to make my SEO rewrite works?
thanks in advance |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
boak_edogawa
Joined: 12 Aug 2008 Posts: 9
|
Posted: Tue Aug 19, 2008 1:40 am Post subject: Re: after install and activate the SEO, my page got Error 404 |
|
|
but when i clicked the link (url) .... the error 404 happened, does this still meant works?
thanks |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
Posted: Sat Aug 23, 2008 7:39 am Post subject: Re: after install and activate the SEO, my page got Error 404 |
|
|
The 404 are related to mod_rewrite and .htaccess. If mod_rewrite is available on your server, then it's only a matter of implementation.
The .htaccess you posted here is meant to be installed in the domain's root (eg above Forum/) and to be used with virtual root on.
I'm not 100% sure that the virtual root option was what you wanted, but did you place the .htaccess at the right place ? (with no other in Forum/) ? |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
boak_edogawa
Joined: 12 Aug 2008 Posts: 9
|
Posted: Tue Aug 26, 2008 4:57 am Post subject: Re: after install and activate the SEO, my page got Error 404 |
|
|
dear admin,
FYI, I put the .htaccess in phpbb seo cache, in /Forum/ and in root (where my index.hml placed)
but still not woks,
kindly help me
thanks  |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
|
|