mirror of
https://github.com/standardebooks/web.git
synced 2025-07-10 00:30:28 -04:00
Tweak wording on delete artist page and add some more breadcrumbs
This commit is contained in:
parent
1136cfb2af
commit
34fd71e55a
11 changed files with 83 additions and 19 deletions
|
@ -1,4 +0,0 @@
|
|||
RewriteRule ^/artists/(.+?)/delete$ /artists/delete.php?artist-url-name=$1 [L]
|
||||
|
||||
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^post$/"
|
||||
RewriteRule ^/artists/([^/\.]+)$ /artists/post.php?artist-url-name=$1 [L]
|
|
@ -1,5 +1,11 @@
|
|||
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^get$/"
|
||||
RewriteRule ^/artworks/([^\./]+?)$ /artists/get.php?artist-url-name=$1 [L]
|
||||
|
||||
RewriteCond expr "tolower(%{REQUEST_METHOD}) =~ /^post$/"
|
||||
RewriteRule ^/artworks/([^/\.]+)$ /artists/post.php?artist-url-name=$1 [L]
|
||||
|
||||
RewriteRule ^/artworks/([^/\.]+?)/delete$ /artists/delete.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]
|
||||
|
||||
|
|
|
@ -220,7 +220,6 @@ Define conf_rewrite_root ${web_root}/config/apache/rewrites
|
|||
Include ${conf_rewrite_root}/feeds.conf
|
||||
Include ${conf_rewrite_root}/ebooks.conf
|
||||
Include ${conf_rewrite_root}/newsletters.conf
|
||||
Include ${conf_rewrite_root}/artists.conf
|
||||
Include ${conf_rewrite_root}/artworks.conf
|
||||
Include ${conf_rewrite_root}/polls.conf
|
||||
Include ${conf_rewrite_root}/users.conf
|
||||
|
|
|
@ -202,7 +202,6 @@ Define conf_rewrite_root ${web_root}/config/apache/rewrites
|
|||
Include ${conf_rewrite_root}/feeds.conf
|
||||
Include ${conf_rewrite_root}/ebooks.conf
|
||||
Include ${conf_rewrite_root}/newsletters.conf
|
||||
Include ${conf_rewrite_root}/artists.conf
|
||||
Include ${conf_rewrite_root}/artworks.conf
|
||||
Include ${conf_rewrite_root}/polls.conf
|
||||
Include ${conf_rewrite_root}/users.conf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue