Status
Not open for further replies.

sunnyx12x21x

Active Member
173
2010
0
0
Hello Guys

Hi guys i recently have lost my host files including all vBulletin files and plugins worst part is my hataccess which i somehow manage to setup by some help from Wjunction Member !

So now Scenes i shave installed vbulletin and vbseo (same version of ealier).
and used my sql database to back up all !

My site is not started functioning !~
Site name - http://scsddl.info

Code:
Reirection is not wrking on
http://www.scsddl.info/musics/15951-balmorhea-live-sint-elisabethkerk-2011-a.html

Forumdispay.php seems to working fine . Showthead.php redirection is not working !
And i guess am even unable open private message but that is not my big concern now !
 
9 comments
Code:
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\.scsddl\.info
RewriteRule (.*) http://www.scsddl.info/$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|api\.php)
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]

whatz more ?
 
use this

RewriteCond %{HTTP_HOST} ^scddl.info$ [NC]
RewriteRule ^/?$ "http\:\/\/www\.scddl\.info" [R=301,L]

#RewriteCond %{HTTPS} !=on
#RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R,L]

RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_URI} !(admncp/|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]
 
do not need .htaccess edit if you use vbseo.vbseo automatically do that work.just remove the line of .htaccess that you edited.
hopefully works
 
Status
Not open for further replies.
Back
Top