我的所有文件夹和文件都在www.mysite.com/magento/
中,而我的主页基本网址是www.mysite.com/magento/
。我需要将此网址更改为仅www.mysite.com
,如果可能,我不想将文件从/magento/
移动到后台文件夹。
如果我使用系统 - 配置 - 来自我的magento-admin-panel的Web,它不起作用,我无法连接到面板。
答案 0 :(得分:0)
您应该可以使用.htaccess
和RewriteBase
完成此操作。
以下是Magento .htaccess
示例中的注释示例:
############################################
## you can put here your magento root folder
## path relative to web root
RewriteBase /magento/
这应该可以解决你的问题。
您可以在此处详细了解RewriteBase
:http://httpd.apache.org/docs/current/mod/mod_rewrite.html#page-header
编辑:在网络根目录中,您需要对Magento根目录进行某种重写:
RewriteEngine on
RewriteCond %{REQUEST_URI} !magento/
RewriteRule (.*) /magento/$1 [L]
请记住,所有未经测试的示例都应指向正确的方向。 :)
干杯。