這可能是一個非常基本的問題。我在我的網站上有一個文件夾,裏面有幾個相互連接的php和html文件。這是路徑:如何在文件夾內默認運行一個php或html文件?
http://107.170.253.5/login
第一個問題是我不希望用戶看到這個路徑。第二個問題是我想要用戶點擊上面的鏈接。它直接進入login.html。 任何幫助或引用將不勝感激。
這可能是一個非常基本的問題。我在我的網站上有一個文件夾,裏面有幾個相互連接的php和html文件。這是路徑:如何在文件夾內默認運行一個php或html文件?
http://107.170.253.5/login
第一個問題是我不希望用戶看到這個路徑。第二個問題是我想要用戶點擊上面的鏈接。它直接進入login.html。 任何幫助或引用將不勝感激。
做出.htacess文件,並添加這些
//only for login dir so that no one sees any file inside it.
<Directory your_full_dir_name/login/>
Options -Indexes
</Directory>
//for whole website so that no one sees any file inside it.
<Directory root_dir_name>
Options -Indexes
</Directory>
//to make login.html default page
DirectoryIndex login.html
這樣http://107.170.253.5/login/login.html? –
嘗試擴展爲「我希望這個URL指向這個文件」 - 如果這不是你的意思,那也應該表明這個問題很難理解爲書面的(在你的期望中更明確)。 – AD7six
@unknown這就是答案。現在我不想讓任何人看到107.170.253.5/login/ – Bernard