mirror of
https://github.com/standardebooks/web.git
synced 2025-07-22 15:24:46 -04:00
Add admin tool to handle duplicate artist names (#480)
This commit is contained in:
parent
576fcea0b1
commit
a91509726c
9 changed files with 261 additions and 2 deletions
4
config/apache/rewrites/artists.conf
Normal file
4
config/apache/rewrites/artists.conf
Normal file
|
@ -0,0 +1,4 @@
|
|||
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]
|
|
@ -202,6 +202,7 @@ 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