Ich habe hier das hier gefunden:
Umzug von Hauptverzeichnis in ein Unterverzeichnis namens "forum"
Code:
RewriteEngine on
RewriteRule ^forumdisplay.php(.*) /forum/forumdisplay.php$1 [L,R=301,QSA]
RewriteRule ^showthread.php(.*) /forum/showthread.php$1 [L,R=301,QSA]
Wie muss ich das anpassen und wohin muss in meinem Fall dei .htaccess Datei ?
Hier nochmal die genaue Verzeichnisstruktur auf meinem Webspace:
(domain leitet auf mhf/)
vbcms startseite ist unter mhf/
forum ist unter mhf/forum/ --> und soll in zukunft unter domain.de/forum/ anstatt unter domain.de abrufbar sein so dass ich im Verzeichnis mhf/ noch eine getrennte Webseite erstellen kann.
domain.de ist selbstverständlich hier nur ein Beispiel.
Das ist meine aktuelle .htaccess die unter mhf/ liegt:
Code:
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On
Options +FollowSymLinks
# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums/)
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images|photoplog|wiki)/
RewriteRule ^(.+)$ forum/vbseo.php?vbseourl=$1&vbseorelpath=../&%{QUERY_STRING} [L,QSA]
Also will ich das alles eine Ebene weiter "nach hintern schieben" so dass es dann so aussieht:
(domain leitet auf mhf/)
vbcms startseite ist unter mhf/forum
forum ist unter mhf/forum/forum/
Das ist die .htaccess die ich aktuell im Verzeichnis mhf/forum/ liegen habe:
Code:
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On
# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums/)
#RewriteBase /
#RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
#RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
Wäre nett wenn mir jemand dabei helfen könnte.
Lesezeichen