只需两三个配置更改就足以将 magento 移动到另一台服务器。
- 对于数据库设置,修改
app-->etc-->local.xml
文件
- 如果您更改了 URL,则需要在
core_config_data
表中编辑数据库。在此更改值中为web/unsecure/base_url
您web/secure/base_url
当前的base url
对于 Apache 服务器:
3. 有时您需要修改 .htaccess 文件。它位于根目录。像这样将重写引擎设置(如果需要)更改为当前的根目录,
**RewriteBase /magento/**
对于 NGINX 服务器:
如果你的网络服务器是 NGINX 那么你的配置应该是这样的,
server {
root /home/magento/web/;
index index.php;
server_name magento.example.com;
location / {
index index.html index.php;
try_files $uri $uri/ @handler;
expires 30d;
}
location ~ ^/(app|includes|lib|media/downloadable|pkginfo|report/config.xml|var)/ { internal; }
location /var/export/ { internal; }
location /. { return 404; }
location @handler { rewrite / /index.php; }
location ~* .php/ { rewrite ^(.*.php)/ $1 last; }
location ~* .php$ {
if (!-e $request_filename) { rewrite / /index.php last; }
expires off;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param MAGE_RUN_CODE default;
fastcgi_param MAGE_RUN_TYPE store;
include fastcgi_params;
}
}
有关这方面的更多信息,请点击以下链接,
点击我