viper357
Well-known member
Hi everyone, I am currently on vb 3.8.5 and have DBSEO installed, I need some help with rewrites for htaccess I believe.
This is what my current url's look like for threads:
What do I need to add to my htaccess for the urls to rewrite? My Xenforo will be installed in a folder at /forums Thanks for the help.
Also, will I need to leave the DBSEO stuff in the htaccess file? This is what is in there at the moment...
This is what my current url's look like for threads:
Code:
http://www.marineaquariumsa.com/general-discussions/63267-sump-advice-please.html
What do I need to add to my htaccess for the urls to rewrite? My Xenforo will be installed in a folder at /forums Thanks for the help.
Also, will I need to leave the DBSEO stuff in the htaccess file? This is what is in there at the moment...
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^marineaquariumsa.com$ [NC]
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^(.*)$ http://www.marineaquariumsa.com/$1 [R=301,L]`
RewriteEngine On
# If you are having problem with "None Could Be Negotiated" errors in Apache, uncomment this to turn off MultiViews
# Options -MultiViews
RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api\.php)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ dbseo.php [L,QSA]