been gone a long time - back to ask for help :)
This htaccess code is causing 500 errors.
It works fine when it's just the CDSEO code. When I add in the bb_Store stuff on and the nonwww stuff it breaks. Any ideas?
DirectoryIndex home.php index.html index.php
# Enable mod rewrite engine
RewriteEngine On
#Matches old bb_store urls and redirects to same url without bb_store
RewriteRule ^bb_store/catalog/(.*)$ http://www.example.com/catalog/$1 [R=301,L]
#Redirects nonwww to www
RewriteEngine On
RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
# ------------------------------------
# CDSEO Pro
# ------------------------------------
# This directory index is recommended to replace the
# x-cart default within this .htaccess file
# .htpasswd protection
# May be required if your htpasswd files are located below document root
(i.e. cpanel)
# Remove # at the beginning of this line if your unable to access password
protected folders:
ErrorDocument 401 "Unauthorized"
# Some servers require this Options directive to be disabled
# Remove # at the beginning of this line to disable:
#Options -Multiviews
# Some servers require the Rewritebase directive to be enabled
# Remove # at the beginning of this line to enable:
RewriteBase /
RewriteCond %{REQUEST_URI} !^/(payment|admin|provider|partner)/
RewriteCond %{REQUEST_FILENAME} !\.(gif|jpe?g|png|js|css|swf|php|ico)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ cdseopro.php
# ------------------------------------
# / CDSEO Pro
#