Chrome Unsafe Attempt To Load Url Xslt (Limited ✯)

Chrome Unsafe Attempt To Load Url Xslt (Limited ✯)

add_header Access-Control-Allow-Origin *;

<?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html><body> <h2>Items:</h2> <xsl:for-each select="root/item"> <p><xsl:value-of select="."/></p> </xsl:for-each> </body></html> </xsl:template> </xsl:stylesheet> chrome unsafe attempt to load url xslt

The root cause is Chrome's security policy. The cleanest solution is to use a local web server instead of opening XML files directly from disk. add_header Access-Control-Allow-Origin *; &lt;