-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeb.config
More file actions
30 lines (29 loc) · 1.31 KB
/
Copy pathWeb.config
File metadata and controls
30 lines (29 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".otf" mimeType="font/otf" />
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
</staticContent>
<rewrite>
<rules>
<rule name="Redirect galleries">
<match url="galleries/([0-9]+)/([0-9]+)" />
<conditions>
<add input="{HTTP_USER_AGENT}" pattern="facebookexternalhit" ignoreCase="false" negate="true"/>
<!-- |Twitterbot|Pinterest|Google.*snippet) -->
</conditions>
<action type="Redirect" url="projects.html#&gid={R:1}&pid={R:2}" />
</rule>
<rule name="Redirect about">
<match url="galleries/info" />
<conditions>
<add input="{HTTP_USER_AGENT}" pattern="facebookexternalhit" ignoreCase="false" negate="true"/>
<!-- |Twitterbot|Pinterest|Google.*snippet) -->
</conditions>
<action type="Redirect" url="about.html#&gid=1&pid=1" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>