The website has removed a dangerous Trojan horse file from its collection of templates!
I don't know exactly what this template is used for; perhaps someone who knows better could suggest using it to create a website for downloading various resources!
Includes a Member Center!
Preview:



Nginx pseudo-static routing
rewrite ^/post-([0-9]+)-([0-9]+).html$ /e/action/ShowInfo.php?classid=$1&id=$2&page=$3;
rewrite ^/category-([0-9]+)-([0-9]+).html$ /e/action/ListInfo/index.php?classid=$1&page=$2;
rewrite ^/tags-([0-9]+)-([0-9]+).html$ /e/tags/index.php?tagid=$1&page=$2;Apache pseudo-static
RewriteEngine On
RewriteBase /
RewriteRule ^post-([0-9]+)-([0-9]+).html$ /e/action/ShowInfo.php?classid=$1&id=$2&page=$3
RewriteRule ^category-([0-9]+)-([0-9]+).html$ /e/action/ListInfo/index.php?classid=$1&page=$2
RewriteRule ^tags-([0-9]+)-([0-9]+).html$ /e/tags/index.php?tagid=$1&page=$2