Forum Moderators: phranque

Message Too Old, No Replies

issues enabling multiviews in .htaccess

htaccess, multiviews

         

samirtv

10:27 pm on Aug 12, 2010 (gmt 0)

10+ Year Member



Here is my .htaccess code, I am hosting at 1and1, I am trying to setup this site and it is telling me that I have enabled multi-views however I believe I disabled them?

I am new at this stuff so please go easy on me!

Thanks for your help.

Sam

Options -MultiViews

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^signup$ /signup.php
RewriteRule ^account$ /account.php
RewriteRule ^logout$ /logout.php
RewriteRule ^login$ /login.php
RewriteRule ^view/(.*)/(.*) /view.php?cat=$1&pid=$2
RewriteRule ^category/(.*)/(.*) /category.php?cat=$1&name=$2
RewriteRule ^top$ /top.php
RewriteRule ^flop$ /flop.php
RewriteRule ^random$ /random.php
RewriteRule ^password$ /password.php
RewriteRule ^confirmemail/(.*) /confirmemail.php?code=$1
RewriteRule ^resetpassword/(.*) /resetpassword.php?code=$1
RewriteRule ^editaccount$ /editaccount.php
RewriteRule ^changeemail$ /changeemail.php
RewriteRule ^changepass$ /changepass.php
RewriteRule ^resendconfirmation/(.*) /resendconfirmation.php?userid=$1
RewriteRule ^favorites$ /favorites.php
RewriteRule ^members/(.*)/(.*) /memberprofile.php?pid=$1&name=$2
RewriteRule ^advanced_search$ /advanced_search.php
RewriteRule ^moderate$ /moderate.php
RewriteRule ^termsofuse$ /termsofuse.php
RewriteRule ^privacypolicy$ /privacypolicy.php
RewriteRule ^aboutus$ /aboutus.php
RewriteRule ^advertising$ /advertising.php
RewriteRule ^contactus$ /contactus.php
</IfModule>

<IfModule mod_security.c>
# Turn off mod_security filtering.
SecFilterEngine Off

# The below probably isn't needed,
# but better safe than sorry.
SecFilterScanPOST Off
</IfModule>

AddType x-mapp-php5 .php

jdMorgan

6:28 pm on Aug 13, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



What specifically, is telling you that MultiViews are enabled?

Are there any other error messages in the error log?

Is AllowOverride Options (or All) set in the server config file(s)?

Do you have lower-level .htaccess files that may be re-enabling MultiViews?

Jim