2016-12-21 71 views
1

我想爲我的應用程序設置通用應用程序鏈接,並且試圖將Apple-app-site-association上傳到服務器「/」和「/。well- known」的位置,但是當我導航到它時,我得到一個404錯誤。如何設置蘋果應用程序網站協會的內容/ MIME類型作爲應用程序/ JSON

當我嘗試創建一個mime類型不是application/json時,它總是回覆到鍵入文本而不是application/json。

我無法在服務器上訪問Plesk上的虛擬主機/ Apache設置,也無法訪問可用於設置文件內容類型的etc/sites。這是我的參考https://gist.github.com/anhar/6d50c023f442fb2437e1#modifying-the-content-type

我的文件的內容是

{ 
    "applinks": { 
     "apps": [], 
     "details": [ 
      { 
       "appID": "XXXXX.com.domain.appname", 
       "paths": [ 
        "*" 
       ] 
      } 
     ] 
    } 
} 

請幫助。

回答

0

由客戶端提供的服務器是IIS,所以我不得不上傳一個JSON文件蘋果APP-站點association.json,並把在web.config文件中重寫規則,從根本發現,

<rewrite> 
     <rules> 
      <rule name="apple_json_file"> 
       <match url="^apple-app-site-association" /> 
       <action type="Rewrite" url="apple-app-site-association.json" /> 

      </rule> 
     </rules> 
    </rewrite> 

對我來說訣竅。

相關問題