Open misterdai opened 10 years ago
Added check for the path option containing a %d, if found this is replaced with the page number. Example: path = '/blog/%d/index' ends up as '/blog/5/index.html', allowing /blog/5/ as the URL).
path
%d
path = '/blog/%d/index'
'/blog/5/index.html'
/blog/5/
Added check for the
path
option containing a%d
, if found this is replaced with the page number. Example:path = '/blog/%d/index'
ends up as'/blog/5/index.html'
, allowing/blog/5/
as the URL).