Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change prestashop.com to prestashop-project.org in .htaccess #34121

Merged
merged 2 commits into from Oct 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions classes/Tools.php
Expand Up @@ -2128,7 +2128,7 @@ public static function generateHtaccess($path = null, $rewrite_settings = null,
// Write data in .htaccess file
fwrite($write_fd, "# ~~start~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again\n");
fwrite($write_fd, "# .htaccess automaticaly generated by PrestaShop e-commerce open-source solution\n");
fwrite($write_fd, "# https://www.prestashop.com - https://www.prestashop.com/forums\n\n");
fwrite($write_fd, "# https://www.prestashop-project.org\n\n");

if ($disable_modsec) {
fwrite($write_fd, "<IfModule mod_security.c>\nSecFilterEngine Off\nSecFilterScanPOST Off\n</IfModule>\n\n");
Expand Down Expand Up @@ -2367,7 +2367,7 @@ public static function generateRobotsFile($executeHook = false)

// PS Comments
fwrite($write_fd, "# robots.txt automatically generated by PrestaShop e-commerce open-source solution\n");
fwrite($write_fd, "# https://www.prestashop.com - https://www.prestashop.com/forums\n");
fwrite($write_fd, "# https://www.prestashop-project.org\n");
fwrite($write_fd, "# This file is to prevent the crawling and indexing of certain parts\n");
fwrite($write_fd, "# of your site by web crawlers and spiders run by sites like Yahoo!\n");
fwrite($write_fd, "# and Google. By telling these \"robots\" where not to go on your site,\n");
Expand Down