Mam serwer VPS. No i oczywiście instalacje LAMP. Serwer ogólnie miał być używany tylko do gry w Diablo2 ale zostało mi jeszcze dużo miejsca więc postanowiłem przenieść moje strony z Hosting24 na mój prywatny serwer, po co płacić za dwa jak mogę mieć wszystko na jednym. Moje forum pracuje na skrypcie phpBB3 i katalog ,,page presell'' też mam ale w obu przypadkach nie mogę sobie poradzić z plikiem .htaccess, non stop wyświetla mi:
Kod: Zaznacz cały
500 Internal Server Error
Plik katalogu page presell:
Kod: Zaznacz cały
RewriteEngine On
# ZMIEN SCIEZKE, JESLI TWOJA STRONA ZNAJDUJE SIE W PODKATALOGU
# PRZYKLAD: RewriteBase /moja/fajna/strona/
RewriteBase /
RewriteRule ^rss(/$|$) rss.php [L]
RewriteRule ^glowna(/$|$) index.php?module=glowna [L]
RewriteRule ^wyloguj(/$|$) index.php?module=wyloguj [L]
RewriteRule ^zaloguj(/$|$) index.php?module=zaloguj [L]
RewriteRule ^rejestracja(/$|$) index.php?module=rejestracja [L]
RewriteRule ^rejestracja/sukces(/$|$) index.php?module=rejestracja&status=add_ok [L]
RewriteRule ^kontakt(/$|$) index.php?module=kontakt [L]
RewriteRule ^kontakt/wyslano(/$|$) index.php?module=kontakt&status=send_success [L]
RewriteRule ^regulamin(/$|$) index.php?module=regulamin [L]
RewriteRule ^moje-wpisy(/$|$) index.php?module=mojeWpisy [L]
RewriteRule ^moje-wpisy/edytuj/([0-9]+)(/$|$) index.php?module=mojeWpisy&act=edytuj&id=$1 [L]
RewriteRule ^moje-wpisy/status/([a-z0-9_]+)(/$|$) index.php?module=mojeWpisy&status=$1 [L]
RewriteRule ^wpisy(/$|$) index.php?module=wpisy [L]
RewriteRule ^tag/(.*?)/strona/([0-9]+)(/$|$) index.php?module=wpisy&tag=$1&start=$2 [L]
RewriteRule ^tag/(.*?)(/$|$) index.php?module=wpisy&tag=$1 [L]
RewriteRule ^([a-z0-9_-]+)-([0-9]+)(/$|$) index.php?module=wpisy&id=$2 [L]
RewriteRule ^usun-wpis/([0-9]+)(/$|$) index.php?module=mod&act=usunWpis&id=$1 [L]
RewriteRule ^usun-wpis/status/([a-z0-9_]+)(/$|$) index.php?module=mod&status=$1 [L]
RewriteRule ^edytuj-wpis/([0-9]+)(/$|$) index.php?module=mod&act=edytujWpis&id=$1 [L]
RewriteRule ^edytuj-wpis/status/([a-z0-9_]+)(/$|$) index.php?module=mod&status=$1 [L]
RewriteRule ^nowe-wpisy(/$|$) index.php?module=mod [L]
RewriteRule ^akceptuj-wpis/([0-9]+)(/$|$) index.php?module=mod&act=akceptujWpis&id=$1 [L]
RewriteRule ^akceptuj-wpis/status/([a-z0-9_]+)(/$|$) index.php?module=mod&status=$1 [L]
RewriteRule ^kategoria/([a-z0-9_-]+)-([0-9]+)(/$|$) index.php?module=kategorie&id=$2 [L]
RewriteRule ^kategoria/([a-z0-9_-]+)-([0-9]+)/strona/([0-9]+)(/$|$) index.php?module=kategorie&id=$2&start=$3 [L]
RewriteRule ^kategorie(/$|$) index.php?module=kategorie [L]
Kod: Zaznacz cały
# Lines That should already be in your .htacess
#
# 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.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
<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
# REWRITE BASE
RewriteBase /
# HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
# RewriteCond %{HTTP_HOST} !^www\.pogadajmy\.net\.pl$ [NC]
# RewriteRule ^(.*)$ http://www.pogadajmy.net.pl/$1 [QSA,L,R=301]
# DO NOT GO FURTHER IF THE REQUESTED FILE / DIR DOES EXISTS
RewriteCond %{REQUEST_FILENAME} -f
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 WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
# RewriteRule ^forum\.html$ /index.php [QSA,L,NC]
# FORUM ALL MODES
RewriteRule ^(forum|[a-z0-9_-]*-f)([0-9]+)(-([0-9]+))?\.html$ /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$ /viewtopic.php?f=$2&t=$4&start=$6 [QSA,L,NC]
# GLOBAL ANNOUNCES WITH VIRTUAL FOLDER ALL MODES
RewriteRule ^announces/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /viewtopic.php?t=$2&start=$4 [QSA,L,NC]
# TOPIC WITHOUT FORUM ID & DELIM ALL MODES
RewriteRule ^([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
# PHPBB FILES ALL MODES
RewriteRule ^resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /download/file.php?id=$2&t=$1 [QSA,L,NC]
# PROFILES ALL MODES WITH ID
RewriteRule ^(member|[a-z0-9_-]*-u)([0-9]+)\.html$ /memberlist.php?mode=viewprofile&u=$2 [QSA,L,NC]
# USER MESSAGES ALL MODES WITH ID
RewriteRule ^(member|[a-z0-9_-]*-u)([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /search.php?author_id=$2&sr=$3&start=$5 [QSA,L,NC]
# GROUPS ALL MODES
RewriteRule ^(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^active-topics(-([0-9]+))?\.html$ /search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^unanswered(-([0-9]+))?\.html$ /search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^newposts(-([0-9]+))?\.html$ /search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# THE TEAM
RewriteRule ^the-team\.html$ /memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES
# FORUM WITHOUT ID & DELIM ALL MODES (SAME DELIM)
# THESE FOUR LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([a-z0-9_-]+)(-([0-9]+))\.html$ /viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([a-z0-9_-]+)\.html$ /viewforum.php?forum_uri=$1 [QSA,L,NC]
# FIX RELATIVE PATHS : FILES
RewriteRule ^.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /$1 [QSA,L,NC,R=301]
# FIX RELATIVE PATHS : IMAGES
RewriteRule ^.+/(styles/.*|images/.*)/$ /$1 [QSA,L,NC,R=301]
# END PHPBB PAGES
#####################################################
Proszę o sensowną odpowiedź?