Có một tài liệu tham khảo nhanh:
Về cơ bản, chúng ta cần thay đổi cấu hình kết nối trong app / etc / env.php , cấu hình url trong core_config_data
và đặt quyền cho các tệp nguồn của bạn.
--Sau khi nhập cơ sở dữ liệu sao lưu, chúng ta cần thay đổi web/unsecure/base_url
và web/secure/base_url
đường dẫn trong core_config_data
bảng. Chúng tôi có thể kiểm tra:
SELECT * FROM core_config_data a WHERE a.`path` LIKE '%web/unsecure/base_url%'
UNION
SELECT * FROM core_config_data a WHERE a.`path` LIKE '%web/secure/base_url%'
Thay đổi giá trị luận án thành url của riêng bạn.
- Nên thay đổi máy chủ, dbname, tên người dùng, ứng dụng pwd / etc / env.php :
array (
'table_prefix' => '',
'connection' =>
array (
'default' =>
array (
'host' => 'localhost',
'dbname' => 'mage21',
'username' => 'root',
'password' => '',
'active' => '1',
),
),
),
- Thay đổi quyền và chủ sở hữu của tệp:
http://devdocs.magento.com/guides/v2.1/install-gde/prereq/file-sys-perms-over.html
http://devdocs.magento.com/guides/v2.1/config-guide/prod/prod_file-sys-perms.html
--May chạy triển khai nội dung tĩnh php bin/magento setup:static-content:deploy
--Remember để xóa Magento Cache và xóa var/generation
, var/composer_home
, var/view_preprocessed
.
Có một tài liệu tốt ở đây: http://devdocs.magento.com/guides/v2.0/config-guide/prod/prod_deploy.html
[BIÊN TẬP]
Từ phiên bản Magento 2.2, có nhiều cải tiến: http://devdocs.magento.com/guides/v2.2/config-guide/deployment/