Difference between revisions of "Simple Redirect"

From FOG Project
Jump to: navigation, search
(Created page with " Normally, to get to the FOG web interface, you have to type <pre>x.x.x.x/fog/management</pre> This works fine, but if FOG is the '''only''' thing your Linux box is running, ...")
 
m (syntax correction - yay me for knowing PHP now!)
Line 14: Line 14:
 
in here, you'd write (or copy/paste) this:
 
in here, you'd write (or copy/paste) this:
  
<pre><?php header('Location: http://x.x.x.x/fog/management/index.php'); ?>
+
<pre><?php header('Location: http://x.x.x.x/fog/management/index.php');
die();</pre>
+
die();
 +
?></pre>
  
 
Save this file.
 
Save this file.

Revision as of 17:09, 25 April 2016

Normally, to get to the FOG web interface, you have to type

x.x.x.x/fog/management

This works fine, but if FOG is the only thing your Linux box is running, you can simplify this with a redirect so that simply typing the x.x.x.x into a web browser takes you to the FOG login page.


Fedora

On your FOG server, we will create a file called index.php using vi.

vi /var/www/html/index.php

in here, you'd write (or copy/paste) this:

<?php header('Location: http://x.x.x.x/fog/management/index.php');
die();
?>

Save this file.

Now, when you go to x.x.x.x you'll be taken to the FOG login screen! How cool is that?!?

Instructions on using Vi: vi