mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
17 lines
405 B
ApacheConf
17 lines
405 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
#Rewrite Engine anschalten
|
|
RewriteEngine on
|
|
|
|
#normale Seiten ohne Unterverzeichnis (Liste, Rezeptliste)
|
|
RewriteRule ^([a-zA-Z0-9-]+)$ ?site=$1
|
|
|
|
#Error Seite
|
|
RewriteRule ^error/([a-zA-Z0-9-]+)$ ?site=error&id=$1
|
|
|
|
#Rezept Seite
|
|
RewriteRule ^recipe/([0-9]+)$ ?site=recipe&number=$1
|
|
|
|
#Loginseite
|
|
RewriteRule ^login/url=(.+)$ ?site=login&refurl=$1 [L]
|
|
|
|
</IfModule>
|