http://admin.apiato.dev
It shows the same page as visit http://apiato.dev
http://admin.apiato.dev@phuocnt0612 That's wired, there must be something wrong on your end. I just tested it now and I got this.

Do you have the following in your NGINX config file?
server_name apiato.dev api.apiato.dev admin.apiato.dev;
root /var/www/projects/apiato/apiato/public;
@Mahmoudz Yes, below is my nginx conf
server {
listen 80;
listen [::]:80;
server_name apiato.dev api.apiato.dev admin.apiato.dev;
root /var/www/apiato/public;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_pass php-upstream;
fastcgi_index index.php;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
location /.well-known/acme-challenge/ {
root /var/www/letsencrypt/;
log_not_found off;
}
error_log /var/log/nginx/laravel_error.log;
access_log /var/log/nginx/laravel_access.log;
}
I can access to admin.apiato.dev/login or admin.apiato.dev/dashboard
I too am having this issue still with the latest. http://admin.apiato.develop/login works fine, but http://admin.apiato.develop/ shows the Welcome page instead of the login page. php artisan route:list says it's there: SS: http://zsl.io/e9yc2k
Most helpful comment
@Mahmoudz Yes, below is my nginx conf
I can access to
admin.apiato.dev/loginoradmin.apiato.dev/dashboard