Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi
I have uploaded the apple-app-site-association file on the root of my site which uses umbraco. I have added:
add key="umbracoReservedUrls" value="~/config/splashes/booting.aspx,~/install/default.aspx,~/config/splashes/noNodes.aspx,~/VSEnterpriseHelper.axd,/apple-app-site-association"
But it only says : "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."
Any ideas?
you have /apple-app-site-association please try ~/apple-app-site-association
/apple-app-site-association
~/apple-app-site-association
That gives the same result :(
try adding it to the UmbracoReservedPaths setting instead
I have tried it all. But without success.
I solved this by adding extension .json to the file.
And in web.config
<appSettings> <add key="umbracoReservedPaths" value="~/umbraco,~/install/,~/apple-app-site-association" /> </app.Settings> ... <system.webServer> ... <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> </system.webServer>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Extensionless files / apple site association
Hi
I have uploaded the apple-app-site-association file on the root of my site which uses umbraco. I have added:
add key="umbracoReservedUrls" value="~/config/splashes/booting.aspx,~/install/default.aspx,~/config/splashes/noNodes.aspx,~/VSEnterpriseHelper.axd,/apple-app-site-association"
But it only says : "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."
Any ideas?
you have
/apple-app-site-association
please try~/apple-app-site-association
That gives the same result :(
try adding it to the UmbracoReservedPaths setting instead
I have tried it all. But without success.
I solved this by adding extension .json to the file.
And in web.config
is working on a reply...