vBSEO Error on Forum Link

maester

New Member
I installed VBSeo and am getting this issue. The main page is /home.php but the forum index is /index.php so when installing SEO it changes everything to Codeheretic.com which goes to the /home.php so when clicking on forums it just keeps taking back to /home.php instead of /index.php here is the .httaccess .If you disable the VBSeo it goes back to normal.

Code:
RewriteEngine On
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
AuthName codeheretic.com
AuthUserFile /home/codehere/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/codehere/public_html/_vti_pvt/service.grp
RewriteCond %{HTTP_HOST} ^codeheretic.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.codeheretic.com$
RewriteRule ^/?$ "http\:\/\/www\.codeheretic\.com\/home\.php" [R=301,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]
 

virus

New Member
PUT This in .httpaccess

RewriteEngine On

RewriteBase /

RewriteCond %{HTTP_HOST} !^www\codeheretic\.com [NC]
RewriteRule (.*) http://www.codeheretic.com/$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]
 

owner

New Member
[Sat Apr 18 14:18:40 2009] [alert] [client xxxxxx] /home/xxx/public_html/forums/.htaccess: RewriteRule: bad argument line '^((urllist|sitemap_).*\\.(xml|txt)(\\.gz)?)$', referer: http://www.xxx.com/Latest-DotA-Map.html

Anyone ? ... me also have .htaccess runnn on my man page of joomla ...

Help ?
 
Top