Hi there, new customer here.
I'm trying to use the wiki link simplifying feature of VWPremium. I had a few issues getting it working right off the bat as I have vbSEO, but after reading a few other posts by people in similar situations I believe I've got all the .htaccess stuff figured out. I also use vb4Supercharged as well if that matters.
So my issue is that when the link simplifying option is off, everything works fine. When I turn it on, the articles load but without the stylesheet. Basically has all the content but it's formatted weird on a white background. I've tried rebuilding the link cache and styles.
I'm not sure what all I should post but seeing as the link simplifying seems to rely on .htaccess, here is what's in it right now:
Code:
RewriteEngine On
RewriteBase /
RewriteRule ^showwiki.php?title=(.*)$ showwiki/$1 [L,R=301]
RewriteRule ^showwiki$ showwiki/ [L,QSA,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^showwiki/(.*)?$ showwiki_proxy.php [L,QSA]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
RewriteCond %{REQUEST_URI} !showwiki_proxy.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]
My VB is installed in the root of the domain so there is no /forum subdirectory.
Bookmarks