HTaccess manager

when i copy and paste the content of the htaccess file in the htaccess manager and click the write button it writes the htaccess file but it changes it
 
When you copy & paste the VBSEO .htaccess into your htaccess manager, try leaving out the line about rewrite base and see if that helps. If not, you're not going to be able to run VBSEO on your current host unless the host makes the necessary changes. I'm guessing this is free hosting so chances are the host isn't going to co-operate.
 
can you tell me which lines i have to leave?
And is there any other like vbseo which dont need to upload htaccess?
 
Try pasting only this into your htaccess manager and see if it works:

Code:
RewriteEngine On
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]
 
Back
Top