Ich habe früher schon mit phpBB2 gearbeitet. Aktuell wollte ich phpBB3 installieren. Ging alles problemlos.
Die Seite hat momentan .htaccess Schutz vor dem Release.
Wenn ich das Forum aufrufen möchte, werde ich zur forums.hmtl weiter geleitet. Logge ich mich im adm-Bereich ein, lande ich wieder auf einer Fehlerseite.
mod_rewrite ist an. SEO ist aus (soll aber später wieder an).
Die .htaccess sieht so aus:
Code: Alles auswählen
AuthUserFile *delete by me*
AuthGroupFile /dev/null
AuthName "Password Protected Area"
AuthType Basic
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} /phpBB3(\/?)$
RewriteRule (.*) /forums.html [R=301,L]
RewriteCond %{REQUEST_FILENAME} /phpBB3/index.php
RewriteRule (.*) /forums.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /phpBB3/ucp.php
RewriteRule (.*) /forums/user.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /phpBB3/viewforum.php
RewriteRule (.*) /forums/forum.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /phpBB3/viewtopic.php
RewriteRule (.*) /forums/topic.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /phpBB3/memberlist.php
RewriteRule (.*) /forums/members.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /phpBB3/report.php
RewriteRule (.*) /forums/report.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /phpBB3/posting.php
RewriteRule (.*) /forums/post.html?%{QUERY_STRING} [R=301,L]
RewriteCond %{REQUEST_FILENAME} /phpBB3/mcp.php
RewriteRule (.*) /forums/moderator.html?%{QUERY_STRING} [R=301,L]
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</IfModule>
<limit GET POST>
require valid-user
</limit>
MFG Uli