1

我在将 Magento 移动到另一台服务器时遇到问题。

旧服务器地址:oldserver.com/shop

新服务器地址:newserver.com/shop

我从旧服务器备份数据库和 FTP 文件,然后上传文件并将数据库导入新服务器。使用新的数据库详细信息更改 local.xml 文件后,Magento 后端工作正常,但我从前端重定向时遇到奇怪的问题。当我进入 newserver.com/shop 时,我可以在一瞬间看到我的商店主页,然后自动将我重定向到主域:newserver.com。

我尝试在管理面板中更改地址:基本 URL:{{base_url}} -> http://newdomain.com/shop/ 基本链接 URL:{{unsecure_base_url}} -> http://newdomain.com/shop

其余编辑字段和“安全”选项卡编辑也是如此。它不起作用,仍然将我从商店目录重定向到主域。在 oldserver 字段 {{unsecure_base_url}} 是默认的,没有 newserver.com/shop 并且它工作正常。

我尝试在安装后刷新/禁用所有 Magento 缓存,但仍然无法正常工作。

我试图在 newdomain.com 目录中安装干净的 Magento,一切都很好,它不会将我重定向到主域。有什么想法吗?:)

我的 .htaccess 文件是:

DirectoryIndex index.php

<IfModule mod_php5.c>
php_flag magic_quotes_gpc off
php_flag session.auto_start off
php_flag suhosin.session.cryptua off
php_flag zend.ze1_compatibility_mode Off
</IfModule>

<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>
</IfModule>

<IfModule mod_ssl.c>
SSLOptions StdEnvVars
</IfModule>

<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
#RewriteBase /magento/  (I have tried to change it to /shop/ and uncomment and still redirect me)
#RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L]
## rewrite API2 calls to api.php (by now it is REST only)
RewriteRule ^api/rest api.php?type=rest [QSA,L]
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_METHOD} ^TRAC[EK]
RewriteRule .* - [L,R=405]
#RewriteCond %{REQUEST_URI} !^/mobiledirectoryhere/.*$
#RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
#RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [L]
</IfModule>
4

4 回答 4

1

不幸的是,今天我在一个新的 magento 项目中遇到了同样的问题。:-) 请检查表 core_config_date 中的每一行。Web 安全和不安全路径可以出现不止一次。

于 2012-11-05T13:04:59.850 回答
1

检查 db 表 core_config_data 中的安全和不安全的 magento 路径。

干净的

/var/cache/* 
/var/session/* 
/var/log/* 

并清理浏览器的缓存。

最后检查是否设置了根目录下的 .htaccess 中的 RewriteBase。

于 2012-11-02T19:34:26.637 回答
0

如果您的 magento 安装的根目录中没有 .htaccess,您应该添加它。您无需进行全新的全新安装。

于 2012-11-05T08:54:50.623 回答
0

我询问了在 oldserver.com/shop 上创建这个主题的公司来移动 Magento。现在它在新服务器上工作,但新服务器有点慢,所以当我进入 newdomain.com/shop 时,我可以看到页面标题:404,然后 Magento 会自动重定向到“家庭”类别之一。我认为我的问题是因为在 Magento 重定向到主域之前找不到主页,现在他们设置了一个类别的重定向。我希望它对将来的任何人都有用。

于 2012-11-05T16:51:23.663 回答