这是我的 .htaccess 文件的内容:
Options MultiViews
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.lventas.com$ [NC]
RewriteRule ^(.*)$ http://lventas.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ http://lventas.com/negocio/$1 [L,QSA]
ErrorDocument 404 http://www.lventas.com/404.php
RewriteOptions Inherit
转到根文件夹时不应执行任何操作,但它仍会重定向到:
http://lventas.com/negocio/default.asp
什么是“default.asp”?为什么在那里指挥?