When I visit my site at Sitename.com (it redirects to Sitename.com/page1.php)
This is a result of this code: header("Location: page1.php"); die();
But if I change it to header("Location: "); die();
I get a blank page at Sitename.com
How do I make a page with the same content as Page1.php when I visit my site?
Like Sitename.com, I want it to display page1 instead of going to Sitename.com/page1.php
It's a login page, when I visit Sitename.com it redirects to Sitename.com/login.php, but I want the login page to be just at Sitename.com
This is a result of this code: header("Location: page1.php"); die();
But if I change it to header("Location: "); die();
I get a blank page at Sitename.com
How do I make a page with the same content as Page1.php when I visit my site?
Like Sitename.com, I want it to display page1 instead of going to Sitename.com/page1.php
It's a login page, when I visit Sitename.com it redirects to Sitename.com/login.php, but I want the login page to be just at Sitename.com