1 | |
---|
2 | |
---|
3 | Redirect permanent /the-tds/ https://6teamconditions.com/team-diagnostic-survey/ |
---|
4 | Redirect permanent /6tc-podcasts/ https://6teamconditions.com/6tc-newpodcasts |
---|
5 | Redirect permanent /regeneron/ https://6teamconditions.com/checkout/order-pay/14720/?pay_for_order=true&key=wc_order_sSqBJPp4a2SNk |
---|
6 | |
---|
7 | RewriteEngine On |
---|
8 | RewriteRule ^(/ICS)($|/) – [L] |
---|
9 | RewriteCond %{HTTPS} off |
---|
10 | RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
---|
11 | |
---|
12 | # BEGIN WordPress |
---|
13 | RewriteEngine On |
---|
14 | RewriteBase / |
---|
15 | RewriteRule ^index\.php$ - [L] |
---|
16 | |
---|
17 | # add a trailing slash to /wp-admin |
---|
18 | RewriteRule ^wp-admin$ wp-admin/ [R=301,L] |
---|
19 | |
---|
20 | RewriteCond %{REQUEST_FILENAME} -f [OR] |
---|
21 | RewriteCond %{REQUEST_FILENAME} -d |
---|
22 | RewriteRule ^ - [L] |
---|
23 | RewriteRule ^(wp-(content|admin|includes).*) $1 [L] |
---|
24 | RewriteRule ^(.*\.php)$ $1 [L] |
---|
25 | RewriteRule . index.php [L] |
---|
26 | |
---|
27 | # END WordPress |
---|