My app url is:
http:
And my admin panel is here:
http:
But when I try to access the admin panel using this URL:
http://localhost/my-app/admin/
It redirects me to:
http:
Is there a way to prevent this if this happens? I also want to access the admin panel from this url.
My htaccess file looks like this:
<IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews </IfModule> RewriteEngine On # Redirect Trailing Slashes If Not A Folder... RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)/$ /$1 [L,R=301] # Handle Front Controller... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] </IfModule>
source share