Sentora Support Forums
Default login page redirect. - Printable Version

+- Sentora Support Forums (https://senforums.mach-hosting.com)
+-- Forum: General Forums - (Non-Sentora Support) (https://senforums.mach-hosting.com/forumdisplay.php?fid=1)
+--- Forum: Sentora Development (https://senforums.mach-hosting.com/forumdisplay.php?fid=54)
+--- Thread: Default login page redirect. (/showthread.php?tid=2546)



Default login page redirect. - blakethepatton - 01-28-2016

So I've noticed that the default page for any domain that is directed to your Sentora server results on the login page. I'm not sure if there is a better solution as to how to make it so your default page is not the login but for those who would rather that I made a total bodge to bypass this.

PHP Code:
//located in /etc/sentora/panel/index.php inserted on line 15
if($_SERVER['SERVER_NAME']!='sentora.example.com'){
    
$toA explode('.'$_SERVER['SERVER_NAME']);
    
array_shift($toA);
    return 
header("LOCATION: http://".implode('.'$toA).$_SERVER['REQUEST_URI'], true301);
    exit();


It's really not the best bit of code I've ever written but I thought I would share it. I'm sure that this might inspire someone else to have an idea that would result in better code. What this script does is it compares the TLD that it was accessed from and it compares it to the string defined (our panel url). If it matches it does nothing but if it doesn't match, it removes the first subdomain from your url and redirects you to it. For example:

Access it from: bad.url.example.www.example.com
redirects to: url.example.www.example.com
then to: example.www.example.com
then to: www.example.com

Anyway I just thought I'd share.

Cheers!
--Blake


RE: Default login page redirect. - Me.B - 01-29-2016

.htacess can do the trick too


RE: Default login page redirect. - TGates - 01-29-2016

(01-29-2016, 06:17 AM)Me.B Wrote: .htacess can do the trick too

Exactly and without editing core panel files Wink


RE: Default login page redirect. - blakethepatton - 01-31-2016

(01-29-2016, 08:59 AM)TGates Wrote:
(01-29-2016, 06:17 AM)Me.B Wrote: .htacess can do the trick too

Exactly and without editing core panel files Wink

Wait what? How would a .htaccess do this?