Forum Moderators: phranque

Message Too Old, No Replies

Infinite URL's on apache

         

akashic

5:43 pm on Apr 22, 2005 (gmt 0)

10+ Year Member



Hi, I'm having a problem with apache and how it handles URLs.. for example

www.mysite.com/index.html is the site homepage.

if I type

www.mysite.com/index.html/ANYTHING_YOU_WANT

apache keep showing me the index.html file. To make things worse, if I type

www.mysite.com/index/ANYTHING_YOU_WANT

with "index" without the "html" extension it's the same.

This is my .htaccess file content

ErrorDocument 404 /error/404/404.html
ErrorDocument 500 /error/500/500.html
ErrorDocument 403 /error/403/403.html
ErrorDocument 401 /error/401/401.html
IndexIgnore *
Options -Indexes
XBitHack on

I've noticed this problem trying to index my site with Mnogosearch...

Any help or clue is truly appreciated!

Rick

jdMorgan

6:31 pm on Apr 22, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Rick,

Welcome to WebmasterWorld!

Maybe your account is configured with content-negotiation enabled.

Try


Options -Indexes -MultiViews

in place of your current Options directive.

Jim