Any tips for the below? I am getting 404 errors and my page is just white with text?
I have added the details to my .htaccess and I have also changed Friendly URLs to Standard URLs?
http://www.hackslashrepeat.com/
.htaccess:
Code:
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]
RewriteCond %{HTTP_HOST} ^hackslashrepeat\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.hackslashrepeat\.com$
RewriteRule ^/?$ "http\:\/\/www\.hackslashrepeat\.com\/forums\/" [R=301,L]
EDIT: I put the above in the .htaccess in /forums/ and my 301 redirect to /forums/ in public_html. All seems to be well now. Is this correct?