2018-07-09 10:47:39 +02:00
|
|
|
# BEGIN WordPress
|
|
|
|
|
<IfModule mod_rewrite.c>
|
2018-06-19 12:06:54 +00:00
|
|
|
RewriteEngine On
|
2018-07-26 13:47:59 +02:00
|
|
|
RewriteBase /
|
2018-06-19 12:06:54 +00:00
|
|
|
RewriteRule ^index\.php$ - [L]
|
2018-07-09 10:47:39 +02:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
2018-07-30 08:54:41 +02:00
|
|
|
RewriteRule . /wp/index.php [L]
|
2018-07-26 13:47:59 +02:00
|
|
|
RewriteCond %{HTTP:Authorization} ^(.*)
|
|
|
|
|
RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
|
2018-07-09 10:47:39 +02:00
|
|
|
</IfModule>
|
2018-07-26 13:47:59 +02:00
|
|
|
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
|
|
|
|
|
# END WordPress
|
|
|
|
|
|
2018-06-19 12:06:54 +00:00
|
|
|
|