0
我使用下面的代碼,如果有一個子文件/文件夾,例如, domain.com/home.html使用htaccess重定向URL
的問題是,如果我剛剛訪問domain.com,它試圖重定向到domain.com/index.html.var
RewriteOptions inherit
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ "http://www.domain.com/$1"
這是哪裏的.htaccess位於,爲什麼你'RewriteOptions inherit'? – anubhava
這是網站的主文件夾。不知道繼承的東西。 –
註釋掉'RewriteOptions inherit'行。您的根文件夾是否有索引文件? – anubhava