phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
HTTP 404 Not Found...

 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 SEO TooLKit  » phpBB SEO Premod
::  
Author Message
ca4fil



Joined: 24 Jun 2008
Posts: 5

HTTP 404 Not Found...Posted: Sun Jun 29, 2008 4:55 pm    Post subject: HTTP 404 Not Found...

Hi i have installed premod at my phpBB 3.0.1 board. but when i select 'Activate URL rewriting' to 'Yes' in ACP and go back to my board and click on any forum i get the error msg:
HTTP 404 Not Found...
Help please...
thanks in advance....
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

HTTP 404 Not Found...Posted: Sun Jun 29, 2008 7:27 pm    Post subject: Re: HTTP 404 Not Found...

Have you generated your .htaccess and put it where the red bold message tells you to in the .htaccess generator ?

_________________
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
ca4fil



Joined: 24 Jun 2008
Posts: 5

HTTP 404 Not Found...Posted: Sun Jun 29, 2008 8:28 pm    Post subject: Re: HTTP 404 Not Found...

Yes i have put the .htaccess file at root directory. but do i need to generate the file before i enable the 'Activate URL rewriting' option or after that?
secondly i have no idea about all the options at seo mod. i have just enable 'Activate URL rewriting'
url rewriting type: advance
highlights removing: yes
virtual folder: yes
forum url caching: yes
no duplicate: yes
and all others options with 'No'.

does these make the difference?
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

HTTP 404 Not Found...Posted: Mon Jun 30, 2008 8:15 am    Post subject: Re: HTTP 404 Not Found...

ca4fil wrote:

does these make the difference?


Of course they do. You should try them on a local test server to better understand the possibilities.

About the .htaccess, URL rewrititng does not need to be activated to generate one, but you should first decide about the other options before you generate one, because most will imply changes in the .htaccess (of course taken into account by the .htaccess generator).

Then, please take a look at the install file, you'll find basic steps to follow in order to be able to make sure that the .htaccess is properly set (at the right place with proper paths and slashes) before activating url rewriting.

_________________
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
Visit poster's website
ca4fil



Joined: 24 Jun 2008
Posts: 5

HTTP 404 Not Found...Posted: Mon Jun 30, 2008 7:43 pm    Post subject: HTTP 404 Not Found...

im really very desperate Sad still the same error:

Here is my .htaccess file...can anybody see whats wrong....
------------------------------------------------------------------
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$ /phpBB3/index.php [QSA,L,NC]
# FORUM
RewriteRule ^[a-z0-9_-]*-f([0-9]+)/?(page([0-9]+)\.html)?$ /phpBB3/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$ /phpBB3/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$ /phpBB3/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$ /phpBB3/viewtopic.php?forum_uri=$1&t=$2&start=$4 [QSA,L,NC]
# PROFILES SIMPLE
RewriteRule ^member([0-9]+)\.html$ /phpBB3/memberlist.php?mode=viewprofile&u=$1 [QSA,L,NC]
# USER MESSAGES SIMPLE
RewriteRule ^member([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /phpBB3/search.php?author_id=$1&sr=$2&start=$4 [QSA,L,NC]
# GROUPS SIMPLE
RewriteRule ^group([0-9]+)(-([0-9]+))?\.html$ /phpBB3/memberlist.php?mode=group&g=$1&start=$3 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ /phpBB3/viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^active-topics(-([0-9]+))?\.html$ /phpBB3/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^unanswered(-([0-9]+))?\.html$ /phpBB3/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^newposts(-([0-9]+))?\.html$ /phpBB3/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# THE TEAM
RewriteRule ^the-team\.html$ /phpBB3/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES

# FORUM WITHOUT ID & DELIM
# THESE FOUR LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^([a-z0-9_-]+)/?(page([0-9]+)\.html)?$ /phpBB3/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
# END PHPBB PAGES
#####################################################
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3477

HTTP 404 Not Found...Posted: Tue Jul 01, 2008 6:51 am    Post subject: Re: HTTP 404 Not Found...

This .htaccess is meant for phpBB installed in example.com/phpBB3/ with the virtual root option activated (forum links will appear at the domain's root level example.com/forum.html)

It should be implemented in the domain's root dir (example.com/).

Is it the setup you are using ?

_________________
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
lovewuha



Joined: 18 Aug 2008
Posts: 6

HTTP 404 Not Found...Posted: Mon Aug 18, 2008 7:24 am    Post subject: Re: HTTP 404 Not Found...

I install phpbb3 in -http://forum.lopthanyeu.net
the .htaccess is in -http://forum.lopthanyeu.net/.htaccess but url not found
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

HTTP 404 Not Found...Posted: Mon Aug 18, 2008 1:16 pm    Post subject: Re: HTTP 404 Not Found...

If your forum is to be found in the forum.lopthanyeu.net sub domain, then it means that it's actually installed in the (sub) domain's root.

So it looks like your sub domain is as well a sub dir of your main domain, and that phpBB is configured as being part of this domain, at least for the forum script path (forum/).

So, first make sure that your have the proper settings for the server domain (should be : forum.lopthanyeu.net) and script path (should be : /) in your phpbb config.

Then, the .htaccess generator will make a proper .htaccess to go in the sub domain's root and the virtual root option should not even show up any more since it has no meaning for when phpBB is installed in the domain's root level.

++

_________________
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
Visit poster's website
lovewuha



Joined: 18 Aug 2008
Posts: 6

HTTP 404 Not Found...Posted: Tue Aug 19, 2008 1:22 am    Post subject: Re: HTTP 404 Not Found...

I try use one .htaccess but seo not working.Help me now Sad(
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

HTTP 404 Not Found...Posted: Sat Aug 23, 2008 7:35 am    Post subject: Re: HTTP 404 Not Found...

Well, you just need to do as I suggested, fix your phpBB config and generate a new .htaccess, and place it in forum.lopthanyeu.net's root dir.

Should work, and if not, try to play with the slash options.

++

_________________
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
Visit poster's website
lovewuha



Joined: 18 Aug 2008
Posts: 6

HTTP 404 Not Found...Posted: Sun Aug 24, 2008 10:16 am    Post subject: Re: HTTP 404 Not Found...

my .htaccess is
Quote:
###############
# FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
# RewriteRule ^forum/forum\.html$ /forum/index.php [QSA,L,NC]
# FORUM
RewriteRule ^forum/[a-z0-9_-]*-f([0-9]+)(-([0-9]+))?\.html$ /forum/viewforum.php?f=$1&start=$3 [QSA,L,NC]

I fix in my phpbb config but it's not word
Quote:
/ra-mat-lam-quen-f23.html was not found on this server.
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

HTTP 404 Not Found...Posted: Wed Aug 27, 2008 9:31 am    Post subject: Re: HTTP 404 Not Found...

Well, it's what I say, the /forum/ path bit comes from your phpBB config, the script path, which in your case should rather be set to :
Code:
/

since it's actually installed in forum.lopthanyeu.net's root.

++

_________________
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
Visit poster's website
lovewuha



Joined: 18 Aug 2008
Posts: 6

HTTP 404 Not Found...Posted: Thu Aug 28, 2008 2:24 am    Post subject: Re: HTTP 404 Not Found...

I try change the domain and phpbb config but ot work
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

HTTP 404 Not Found...Posted: Thu Aug 28, 2008 8:35 am    Post subject: Re: HTTP 404 Not Found...

Have you generated and implemented a new .htaccess after you did ?

_________________
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
Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB3 SEO TooLKit  » phpBB SEO Premod
Page 1 of 1

Navigation Similar Topics

Jump to: