который в Joomla 4
- много информации полезной: habr.com , mb4.ru //
- смотреть: (2024.09) 16:20 , - фавикон свой: выше и kevinsguides.com //
- в yoursite/templates/cassiopeia/images/ поставить свою картинку joomla-favicon.svg (для Joomla 4.0)
или в yoursite/media/templates/site/cassiopeia/images/ (для Joomla 4.1) - страница 404 своя: kickstartcassiopeia.com , ltheme.com //
- ... Now, let’s find and edit the error.php file in the /templates/cassiopeia folder.(или редактировать в настройках щаблона)
After the code defined('_JEXEC') or die; in line 10, you just need to add the following code:
if (($this->error->getCode()) == '404') {
header('Location: ' . Jroute::_("index.php?option=com_content&view=article&id=XXItemid=YY", false));
exit;
}
Don’t forget to replace XX with the ID of the article, and YY with the ID of the menu item you created before. (here XX=1 , YY=101) - мета-тег "generator" убрать: alexfine.ru , mb4.ru //
- В шаблоне сайта в основном файле index.php сразу после тега <head> (стр.115) нужно добавить следующую строчку
<?php Factory::getDocument()->setGenerator(''); ?> (в кавычках можно что написать) - :)
-
-
+
+
+
*