例如:在轉到apple.com/support時在appple網站上我將前往apple.com/support/並且它應該是apple.com/support/index.html,但index.html不會顯示。HTML - 腳本 - 在轉到domain.com/example時隱藏「/index.html」文件
我想要在我的網站上:www.jonathangurebo.se例如,當去jonathangurebo.se/contact我會來jonathangurebo.se/contact/index.html,我不想顯示index.html。
我該如何解決這個問題?
也許添加一些行到我的.htaccess文件?因爲當前往jonathangurebo.se/mlkhgljfehgljfebgfgb時,它會進入我的錯誤404頁面,並在我的地址欄中顯示相同的鏈接。而不是真正的鏈接在這種情況下jonathangurebo.se/error/404.html
爲什麼它會從/ contact /重定向到/contact/index.html?它不應該這樣做。 – 2013-03-07 21:09:14
你不希望它顯示,不要將其包含在URL中。例如,只要請求的結尾是斜槓,DirectoryIndex就會從左到右加載默認文件:DirectoryIndex index.html index.php。查看此[鏈接](http://httpd.apache.org/docs/2.2/mod/mod_dir.html#directoryslash)以獲取更多信息。 – 2013-03-07 21:47:05