0

Opencart是否有人在本地计算机中设置了多商店Xampp,知道如何正确添加代码。我已经扔了和谷歌一样多的教程,这个论坛已经而且似乎无法弄清楚如何正确放置代码。将它放在http.conf文件中时的外观示例将非常有帮助。

教程要求我编辑 Apache 配置文件,为每个子商店添加“别名”。

别名/opcStore_1 "C:/xampp/htdocs/store"

别名/opcStore_2 "C:/xampp/htdocs/store"

  1. 转到此路径:C:\xampp\apache\conf\
  2. 找到 httppd.conf 文件并打开它
  3. 搜索“”部分并在此部分中添加以下代码。???

别名/opcStore_1 "C:/xampp/htdocs/store"

别名/opcStore_2 "C:/xampp/htdocs/store"

添加代码后的外观如何?我在哪里添加它以及它应该看起来如何? 因为我尝试放置它但只得到错误的本地 URL。谢谢

现在,您必须从XAMPP控制面板重新启动 Apache 服务器。重新启动后,您必须在Opencart配置中添加子商店。

OpenCart多商店的配置。

  1. 登录到您的主商店:C:/xampp/htdocs/store/admin
  2. 转到:系统>设置,在这里您可以添加新商店。
  3. 添加给商店网址时:对于第一个商店给网址:“http://localhost/opcStore_1/”

对于第二家商店,请提供 url:“http://localhost/opcStore_2/”

4

3 回答 3

1

看起来像这样,最后我添加了 5 个子商店。

# # Redirect: 允许你告诉客户端曾经存在于服务器命名空间中的文档,但现在不再存在了。客户端 # 将在其新位置对文档发出新请求。# 示例:# 重定向永久 /foo http://localhost/bar

#
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
#
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL.  You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.

#
# ScriptAlias: This controls which directories contain server scripts. 
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client.  The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
#
ScriptAlias /cgi-bin/ "cgi-bin/"  Alias /allbridaljewelry "C:/wamp/www/newStore"  Alias /caketopshop "C:/wamp/www/newStore"

别名 /myspecialparty "C:/wamp/www/newStore" 别名 /superweddingday "C:/wamp/www/newStore" 别名 /weddingfavorsmart "C:/wamp/www/newStore"

于 2012-12-25T10:43:49.683 回答
0

您可以在开发阶段(不是本地主机)检查这个如何设置我们自己的域/

它是印度尼西亚语,但您可以尝试 translate.google.com 来翻译它。

希望这会有所帮助。

于 2012-10-14T07:03:34.370 回答
0

假设您的主要商店是http://localhost/opencart-1.5.6.1

  1. 创建您的多商店(商店名称马来西亚),网址是http://localhost/opencart-1.5.6.1/malaysia/
  2. 打开文件 C:\xampp\apache\conf\httpd.conf 并Alias /opencart-1.5.6.1/malaysia "C:/xampp/htdocs/opencart-1.5.6.1/"在后面添加此代码代码ScriptAlias /cgi-bin/ "C:/xampp/cgi-bin/"
  3. 重新启动 Apache 进程并尝试访问此 URLhttp://localhost/opencart-1.5.6.1/malaysia/
于 2016-12-07T02:45:27.953 回答