.htaccess
author Markus Bröker <broeker.markus@googlemail.com>
Thu, 12 Nov 2015 21:59:50 +0100
changeset 2 40769b11e94f
parent 0 4869aea77e21
child 5 0cbee2939c40
permissions -rw-r--r--
AutoLoader vereinfacht

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !(.*)/$
    RewriteRule ^(.*) $1/ [R,L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.*)/$ [NC]
    RewriteRule ^(.*)/$ /?page=$1 [L,QSA]
</IfModule>