20241207 Typecho1.2.1 设置相对地址
背景意义,博客经常变更避免绝对地址对博客的影响
修改,typecho\var\Widget\Options\General.php
找到153行,将其修改为
if (!defined('__TYPECHO_SITE_URL__')) {
$siteUrl = new Form\Element\Text(
'siteUrl',
null,
$this->options->originalSiteUrl,
_t('站点地址'),
_t('站点地址主要用于生成内容的永久链接.')
);
$siteUrl->input->setAttribute('class', 'w-100 mono');
$form->addInput($siteUrl);
}
即可其中去掉了http地址校验和当前地址和输入框内不一致,也可以设置为空