実稼働 Magento アプリケーションを開発マシンにコピーしました。core_config_data テーブル (2 行) の base_url を変更しました。そして、magento インストール ディレクトリの /var/cache/* を削除しました。
しかし、www.my_dev.com/shop にアクセスすると、www.my_production.com/shop にリダイレクトされます。
これがcore_config_dataです(URLを偽物に変更しました):
mysql> select * from core_config_data;
+-----------+---------+----------+-------------------------------+------------------------------------------------------+
| config_id | scope | scope_id | path | value |
+-----------+---------+----------+-------------------------------+------------------------------------------------------+
| 1 | default | 0 | general/region/display_all | 1 |
| 2 | default | 0 | general/region/state_required | AT,CA,CH,DE,EE,ES,FI,FR,LT,LV,RO,US |
| 3 | default | 0 | catalog/category/root_id | 2 |
| 4 | default | 0 | admin/dashboard/enable_charts | 1 |
| 5 | default | 0 | web/unsecure/base_url | http://www.my_dev.com/shop/ |
| 6 | default | 0 | web/secure/base_url | http://www.my_dev.com/shop/ |
| 7 | default | 0 | general/locale/code | en_US |
| 8 | default | 0 | general/locale/timezone | America/Los_Angeles |
| 9 | default | 0 | currency/options/base | USD |
| 10 | default | 0 | currency/options/default | USD |
| 11 | default | 0 | currency/options/allow | USD |
+-----------+---------+----------+-------------------------------+------------------------------------------------------+
11 rows in set (0.00 sec)
私は何を取りこぼしたか?
ありがとう。
サム・コング