Spree commerce 管理员到子域
Spree commerce admin to a subdomain
在 Spree Commerce 中,如何将管理员 link 设置为子域。
现有的是http://example.org/admin访问管理员
我想做的是http://admin.example.org访问管理页面
Spree 只是一个 rails 应用程序。您可以在 routes.rb 文件中配置您的路线。这是关于同一件事的另一个 Whosebug 问题和 rails 路由指南:
get '/', to: 'admin/root#index', constraints: { subdomain: 'admin' }
在 Spree Commerce 中,如何将管理员 link 设置为子域。
现有的是http://example.org/admin访问管理员
我想做的是http://admin.example.org访问管理页面
Spree 只是一个 rails 应用程序。您可以在 routes.rb 文件中配置您的路线。这是关于同一件事的另一个 Whosebug 问题和 rails 路由指南:
get '/', to: 'admin/root#index', constraints: { subdomain: 'admin' }