xml <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="URL_TO_ALLOW"/> <add name="Access-Control-Allow-Methods" value="GET,PUT,POST,DELETE,OPTIONS"/> <add name="Access-Control-Allow-Headers" value="Content-Type"/> </customHeaders> </httpProtocol> </system.webServer> </configuration> forceHTTPS <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Force HTTPS" stopProcessing="true"> <match url="(.*)" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTPS}" pattern="off" ignoreCase="true" /> <add input="{REQUEST_URI}" negate="true" pattern="/ADD_PATTERM_TO_EXCLUDE_FILES_OR_FOLDERS/" ignoreCase="true" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" appendQueryString="true" redirectType="Permanent" /> </rule> </rules> </rewrite> </system.webServer> </configuration> browserCaching # Enables browser caching <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresByType image/x-icon "access 1 year" ExpiresDefault "access 2 days" </IfModule> customErrorPages
forceHTTPS
preventAccessToConfigFiles
urlRewrite
Well, this is the end of this article. Friends who need it can learn from it. |
<<: Simple use of Vue vee-validate plug-in
>>: Use and analysis of Mysql Explain command
Table of contents Preface 1. Iceraven Browser (Fi...
Abstract: Analysis of two MySQL SQL statement loc...
1. Command Introduction The usermod (user modify)...
Writing XHTML demands a clean HTML syntax. Writing...
Table of contents 1. Introduction 2. Main text 2....
This article shares the specific code of vue3 enc...
A few days ago, I introduced to you a domestic xh...
In fact, it is not difficult to build an Apache c...
1. Start the Docker container Start a new Docker ...
The optimization created by MySQL is to add index...
Table of contents Preface Example summary Preface...
1. Introduction In the past, if you wanted to sta...
Table of contents Experimental environment Instal...
1. There are many Python version management tools...
MVCC MVCC (Multi-Version Concurrency Control) is ...