-
下载预编译程序包
-
解压后,上传到服务器
-
访问站点
http://example.com
数据目录为 dataset
,其中包含了 meta.ini
配置文件和 x.md
作品文件
更新数据目录文件后,需要访问
example.com/?rt=/runtime/build
更新缓存
配置文件使用 ini
格式,当值中出现 =
时,需要用引号括起来整个值
作品文件使用 markdown
格式,每个文件为一件作品,文件名为作品的 id
,文件内容为作品的 content
字段。
-
首行
#
后面的内容为作品的标题,即subject
字段 -
首个
ini
代码块内容为作品的属性数据,格式参阅 配置文件
docker run -dit --name tdpcms \
-v ~/tdpcms:/var/www/default/dataset \
-p 80:80 -p 443:443 \
rehiy/tdpcms
nginx
伪静态规则
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?rt=$1 last;
}
}
apache
伪静态规则
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php?rt=$1 [QSA,PT,L]
</IfModule>
扫码添加开发者好友(请备注 OpenTDP
,不备注可能无法通过好友申请)
Copyright (c) 2022 - 2023 OpenTDP