标签: php nginx url-rewriting magento2
我在服务器上安装了Magneto 2,主站点正在使用www.example.com并加载Magneto 2根目录。现在已经在Magento根目录中创建了名为“ksa”的子文件夹。
我需要使用“ksa”加载主站点
例如
example.com/test.php to example.com/ksa/test.php
我的nginx配置
location ~ /ksa/ { rewrite ^/ksa/$ http://example.com/ permanent; }