mirror of
https://github.com/standardebooks/web.git
synced 2025-07-14 18:42:00 -04:00
9 lines
523 B
Text
9 lines
523 B
Text
RewriteRule ^/artworks/([^\./]+?)$ /artists/get.php?artist-url-name=$1 [L]
|
|
|
|
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^get$/"
|
|
RewriteRule ^/artworks/([^/\.]+)/([^/\.]+)$ /artworks/get.php?artist-url-name=$1&artwork-url-name=$2 [L]
|
|
|
|
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^post$/"
|
|
RewriteRule ^/artworks/([^/\.]+)/([^/\.]+)$ /artworks/post.php?artist-url-name=$1&artwork-url-name=$2 [L]
|
|
|
|
RewriteRule ^/artworks/([^/\.]+)/([^/\.]+)/edit$ /artworks/edit.php?artist-url-name=$1&artwork-url-name=$2 [L]
|