Importing bits and pieces
This is the initial import based on a few files I had around.
This commit is contained in:
commit
871d28cd16
20 changed files with 1994 additions and 0 deletions
5
site/.htaccess
Normal file
5
site/.htaccess
Normal file
|
@ -0,0 +1,5 @@
|
|||
RewriteEngine on
|
||||
#RewriteBase /
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
|
7
site/index.php
Normal file
7
site/index.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
include ( '../includes/loader.inc.php' );
|
||||
Loader::Create( 'URLMapper' , 'site' )->fromPathInfo( );
|
||||
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue