move index to new public_html dir

This commit is contained in:
Guillermo Dev
2018-10-09 00:24:55 +02:00
parent 46fbc39788
commit 59dea265c7
2 changed files with 5 additions and 8 deletions

View File

@@ -1,8 +0,0 @@
<?php
namespace BSR;
require_once('Lib/autoloader.php');
$web = new NetBiblio();
$web->Run();

5
public_html/index.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
require_once('./../Lib/autoloader.php');
$web = new BSR\NetBiblio();
$web->Run();