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-09 10:47:39 +02:00
|
|
|
RewriteBase /api/
|
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
|
|
|
|
|
RewriteRule . /api/index.php [L]
|
|
|
|
|
</IfModule>
|
2018-06-19 12:06:54 +00:00
|
|
|
|
2018-07-09 10:47:39 +02:00
|
|
|
# END WordPress
|