Magento 2:如何检索管理员URI?


Answers:


18

您可以从app/etc/env.php文件中获取它,

您必须从该文件中获取名字,并在基本URL中添加后缀。

'backend' => 
  array (
    'frontName' => 'admin',
  ),

现在你的价值是 http://127.0.0.1/magento2.1/admin

删除缓存并签入浏览器。




1

快速解答(通过文件系统):

您还可以在中检索Magento 2管理员URL <your Magento install dir>/app/etc/env.php。相关文件内容的示例:

'backend' =>
    array (
       'frontName' => 'admin_test',
    ),

快速解答(使用CLI):

php bin/magento info:adminuri

newadminpath新的Magento 2管理员网址在哪里


0

从您的Magento 2商店的根目录转到app / etc。在这里您可以看到env.php文件,并且可以看到管理员名称:

<?php

return array (
 'backend' =>
 array (
   'frontName' => 'admin',
 )

您还可以通过在根目录中运行命令来更改管理员名称:

php bin/magento setup:config:set --backend-frontname="magento"

上面的命令会将管理员名称更改为magento。您可以通过以下网址访问管理面板:www.domain.om/magento

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.