fichier robots.txt absent des ressources suppriemr la copie

This commit is contained in:
Fred Tempez 2021-10-30 18:42:00 +02:00 committed by fredtempez
parent c8a6fd6165
commit 698d433c3b
1 changed files with 2 additions and 4 deletions

View File

@ -945,15 +945,13 @@ class common {
// Move flushed files to their final location. Compress if the option is enabled. // Move flushed files to their final location. Compress if the option is enabled.
$sitemap->finalize(); $sitemap->finalize();
// Update robots.txt file in output directory or create a new one // Update robots.txt file in output directory
if ($this->getData(['config','seo', 'robots']) === true) { if ($this->getData(['config','seo', 'robots']) === true) {
unlink('robots.txt'); unlink('robots.txt');
$sitemap->updateRobots(); $sitemap->updateRobots();
} else {
copy('core/module/install/ressource/robots.txt', 'robots.txt');
} }
// Submit your sitemaps to Google, Yahoo, Bing and Ask.com // Submit your sitemaps to Google, Yahoo, Bing and Ask.com
if (empty ($this->getData(['config','proxyType']) . $this->getData(['config','proxyUrl']) . ':' . $this->getData(['config','proxyPort'])) ) { if (empty ($this->getData(['config','proxyType']) . $this->getData(['config','proxyUrl']) . ':' . $this->getData(['config','proxyPort'])) ) {
$sitemap->submitSitemap(); $sitemap->submitSitemap();