Quote:
Originally Posted by Diablotic
When I put it just above
Code:
RewriteRule ^(.+)$ vbseo.php [L,QSA]
then my website is all messed up with no pictures etc.
When I put it just above
Code:
RewriteCond %{REQUEST_FILENAME} !-f
Then it does not work as it uses my script rewrite first.
When I put it just above
Code:
RewriteRule ^[^/]+vt([0-9]+)\.htm vbseo301.php?action=thread&oldid=$1 [L]
Then my script does not work.
|
This is your first rule to vbseo.php:
Code:
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
Please note that condition is also part of rule. So put vBET rules in appropriate place now

It means just before this one.