adding index.php to redirect to subnets.html

This commit is contained in:
root 2018-09-21 09:14:17 -07:00
parent 829963dce5
commit 7af2c164cb
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
FROM php:5.6-apache FROM php:5.6-apache
COPY gennum.php subnets.html /var/www/html/ COPY index.php gennum.php subnets.html /var/www/html/
COPY img/* /var/www/html/img/ COPY img/* /var/www/html/img/

2
index.php Normal file
View File

@ -0,0 +1,2 @@
<?php
header("Location: subnets.html");