Forum Discussion
martinfalisse
Jul 12, 2024Copper Contributor
iOS MS Edge URLAllowlist configuration
Hi, I've spent many hours to try a lot of ways to allow only 2 URLs on Intune Managed iPads without success. Here is the working Managed Device App Policy : https://i.imgur.com/J4JkW3B.png (every ...
yangyifei
Microsoft
Jul 29, 2025Alternatively, if you are using Intune MDM or a 3rd party UEM solution, the Chromium policy is indeed the right choice. https://learn.microsoft.com/en-us/deployedge/microsoft-edge-mobile-policies#urlallowlist
To allow only 2 URLs (say, a.com and b.com), try this:
<key>URLBlocklist</key>
<array>
<string>*</string>
</array>
<key>URLAllowlist</key>
<array>
<string>https://a.com</string>
<string>https://b.com</string>
<string>about://newtab</string>
</array>
Please be mindful of unwanted trailing slashes in your configuration, by the way.