forked from GNUsocial/gnu-social
make sure notice and user sitemap are 'in' top level directory
This commit is contained in:
parent
c6d9001db5
commit
da8b231d2e
@ -89,14 +89,14 @@ class SitemapPlugin extends Plugin
|
|||||||
$m->connect('sitemapindex.xml',
|
$m->connect('sitemapindex.xml',
|
||||||
array('action' => 'sitemapindex'));
|
array('action' => 'sitemapindex'));
|
||||||
|
|
||||||
$m->connect('/sitemaps/notice/:year/:month/:day/:index.xml',
|
$m->connect('/notice-sitemap-:year-:month-:day-:index.xml',
|
||||||
array('action' => 'noticesitemap'),
|
array('action' => 'noticesitemap'),
|
||||||
array('year' => '[0-9]{4}',
|
array('year' => '[0-9]{4}',
|
||||||
'month' => '[01][0-9]',
|
'month' => '[01][0-9]',
|
||||||
'day' => '[0123][0-9]',
|
'day' => '[0123][0-9]',
|
||||||
'index' => '[1-9][0-9]*'));
|
'index' => '[1-9][0-9]*'));
|
||||||
|
|
||||||
$m->connect('/sitemaps/user/:year/:month/:day/:index.xml',
|
$m->connect('/user-sitemap-:year-:month-:day-:index.xml',
|
||||||
array('action' => 'usersitemap'),
|
array('action' => 'usersitemap'),
|
||||||
array('year' => '[0-9]{4}',
|
array('year' => '[0-9]{4}',
|
||||||
'month' => '[01][0-9]',
|
'month' => '[01][0-9]',
|
||||||
|
Loading…
Reference in New Issue
Block a user