mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
fixed #12
This commit is contained in:
parent
b4e407adc1
commit
c06cd9efcc
1 changed files with 4 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
#Rewrite Engine anschalten
|
||||
RewriteEngine on
|
||||
|
||||
#normale Seiten ohne Unterverzeichnis (Liste, Rezeptliste)
|
||||
#normale Seiten ohne Unterverzeichnis (Liste, Rezeptliste, neues Rezept)
|
||||
RewriteRule ^([a-zA-Z0-9-]+)$ ?site=$1
|
||||
|
||||
#Error Seite
|
||||
|
@ -11,6 +11,9 @@
|
|||
#Rezept Seite
|
||||
RewriteRule ^recipe/([0-9]+)$ ?site=recipe&number=$1
|
||||
|
||||
#Rezepteditieren
|
||||
RewriteRule ^edit-recipe/([0-9]+)$ ?site=edit-recipe&number=$1
|
||||
|
||||
#Loginseite
|
||||
RewriteRule ^login/url=(.+)$ ?site=login&refurl=$1 [L]
|
||||
|
||||
|
|
Loading…
Reference in a new issue