-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
31 lines (31 loc) · 1.09 KB
/
.htaccess
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
31
########################################################
# ROUTING -> PLAYER
########################################################
<IfModule mod_rewrite.c>
Options +FollowSymLinks
# Try to fix conflicting rewrite rules set by Wordpress etc:
RewriteEngine Off
RewriteEngine On
########################################
# Always remove trailing slash
########################################
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R]
########################################
# Rewrite old to new urls
########################################
RewriteRule ^proposal(.*)$ /vision-mission-strategy [R=302,NC,L]
########################################
# Generic rewrites
########################################
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^([a-zA-Z0-9_-]+)? index.php?a=$1 [QSA]
</IfModule>
########################################################
# Add Mime Types
########################################################
AddType video/mp4 .mp4
AddType video/x-m4v .m4v
AddType text/vtt .vtt