各位大大好
想請問一下 routing 網址中
我要讓 index.html 也出現在網址中要怎麼處理呢?
想要讓它這樣顯示(Routing 有開啟 useHash):
由於公司 IIS 沒有設定 default document
沒有 index.html 的話就會自動轉導到公司的主網站
如果要求 IT 設定的話又要跑很冗長的需求單流程
想問有沒有辦法這樣處理
感謝
各位大大好
想請問一下 routing 網址中
我要讓 index.html 也出現在網址中要怎麼處理呢?
想要讓它這樣顯示(Routing 有開啟 useHash):
由於公司 IIS 沒有設定 default document
沒有 index.html 的話就會自動轉導到公司的主網站
如果要求 IT 設定的話又要跑很冗長的需求單流程
想問有沒有辦法這樣處理
感謝
可以放子資料夾內
但就是那個 index.html 若不在網址內
就會被當作 404 not found 並以 302 redirect 導回公司主站的首頁
如果不這樣做的話
任一使用者直接瀏覽內頁(甚至是首頁)
都會被導回主站首頁
抱歉自問自答,找到解決辦法了
在目錄裡偷塞 web.config @@
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <defaultDocument enabled="true"> <files> <add value="index.html" /> </files> </defaultDocument> </system.webServer> </configuration>