mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2025-10-29 01:30:37 +00:00
13 lines
236 B
ApacheConf
13 lines
236 B
ApacheConf
|
|
# BEGIN WordPress
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteRule ^index\.php$ - [L]
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule . /index.php [L]
|
|
</IfModule>
|
|
|
|
# END WordPress
|