嘿,我有一個PHP的Windows Azure項目,但我是新來的IIS。我有我的PHP庫在根文件夾和客戶端文件,如index.php,樣式表或JavaScript文件夾中稱爲document_root。子文件夾中的IIS文檔根
如何設置IIS 7(可能使用Web.config)以將document_root用作站點的默認文件夾(使根不可見),以便我可以調用mydomain.tld /而不是mydomain.tld/document_root/
我用:
<defaultDocument>
<files>
<clear />
<add value="document_root/index.php" />
</files>
</defaultDocument>
的正常工作,但它只能訪問的index.php和無法找到像/document_root/css/default.css任何文件(相對地址爲CSS /默認。 css)