Skip to content

Instantly share code, notes, and snippets.

@tegansnyder
Last active January 15, 2021 12:51
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save tegansnyder/65ba3396ec7cbf70bec9 to your computer and use it in GitHub Desktop.
Save tegansnyder/65ba3396ec7cbf70bec9 to your computer and use it in GitHub Desktop.
Magento Custom Admin Backend

You can set your own custom Magento admin URL in:

System -> Configuration -> [ADVANCED] -> Admin -> Admin Base URL

NOTE: Make sure you have added a ServerAlias directive to your virtual host configuration for backend.domain.com and that you have a SSL cert or wildcart setup for HTTPS traffic on that subdomain or you will lock yourself out the admin.

Rules for your .htaccess file to prevent duplicate urls and redirect directly to admin dashboard:

    # rewrite main domain /admin to custom admin backend
    RewriteCond %{HTTP:HOST} ^www\.domain\.com$
    RewriteCond %{REQUEST_URI} ^/admin
    Rewriterule (.*) https://backend.domain.com [R=301,L]

    # rewrite any backend domain request that is not /admin to /admin
    RewriteCond %{HTTP:HOST} ^backend\.domain\.com$
    RewriteCond %{HTTP_COOKIE} !^.*adminhtml.*$ [NC]
    RewriteCond %{REQUEST_URI} !/admin/
    RewriteRule .* %{REQUEST_URI}index.php/admin/ [R=301,L]
@jorisssss
Copy link

The solution for Magento 2 is pretty simple. Just configure as the main domain name: backend.domain.com. So the admin will be available at backend.domain.com/admin.
Change scope to the storeview, and enter www.domain.com as the store domain name. So the store will be available at www.domain.com.

@thomas-harding
Copy link

Just FYI, the colon in %{HTTP:HOST} doesn't work on some setups. We changed it to %{HTTP_HOST} which worked for us.

@MarinaBonbonRose
Copy link

Hello, there is .htaccess file everywhere, in wich one do you add the new rules ?

@rizwan-i-khan
Copy link

It gives me ERR_TOO_MANY_REDIRECTS

@ask694
Copy link

ask694 commented Aug 6, 2019

Hi, Is this works for Magento 2 ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment