Quote:
Originally Posted by Scoooter
Been reading and a little confused. I'm getting 404 errors on every section of my forum so as of right now it's uninstalled.
My .htaccess had the following before adding this.
# Use PHP5CGI as default
AddHandler application/x-httpd-php5s .php
I added
RewriteEngine On#
to the bottom of what was already there but still getting 404 errors. What am I missing here?
|
You need to add to your htaccess file
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|reviewpost/|classifieds/|photopost/)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
RewriteRule ^(.+)$ dbseo.php [L,QSA]
renaming the admincp and modcp if you have them folders a different name there are also some things that need to be changed in the admin seo panel as well