如何更改:
<base href="10.10.10.10/myfoldername" />
在joomla。我希望它像相对路径而不是实际路径。 可能吗。请帮忙
答案 0 :(得分:0)
您可以在主题中添加以下代码来更改或删除Joomla中的基本网址:
// remove the Base URL
$doc = JFactory::getDocument();
unset($doc->base);
// edit the Base URL
$doc = JFactory::getDocument();
$doc->base = 'Any valid path or URL';
建议将其删除以避免某些情况下的路径错误,尤其是在混合的HTTP-HTTPS环境中。