/r/php
This commit is contained in:
parent
4b39892b68
commit
fcc1b49740
3 changed files with 50 additions and 19 deletions
|
@ -1,19 +1,26 @@
|
||||||
# Block access to every file starting with a dot
|
# Block access to every file starting with a dot
|
||||||
<Files ".*">
|
<Files ".*">
|
||||||
Require all denied
|
Require all denied
|
||||||
</Files>
|
</Files>
|
||||||
|
|
||||||
# Set Error documents
|
# Set Error documents
|
||||||
ErrorDocument 404 /404.php
|
ErrorDocument 404 /404.php
|
||||||
ErrorDocument 403 /404.php
|
ErrorDocument 403 /404.php
|
||||||
ErrorDocument 401 /404.php
|
ErrorDocument 401 /404.php
|
||||||
|
|
||||||
# Rewrite Stuff
|
# Rewrite Stuff
|
||||||
RewriteEngine on
|
RewriteEngine on
|
||||||
Options +FollowSymLinks -Indexes
|
RewriteBase /
|
||||||
|
Options +FollowSymLinks -Indexes
|
||||||
# Rewrite Rules
|
|
||||||
|
# Remove .php from the url
|
||||||
# Serving Images
|
RewriteEngine on
|
||||||
RewriteRule ^a/([0-9]+)$ imageserve.php?m=avatar&u=$1
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
RewriteRule ^a/([0-9]+).png$ imageserve.php?m=avatar&u=$1
|
RewriteCond %{REQUEST_FILENAME}\.php -f
|
||||||
|
RewriteRule ^(.*)$ $1.php
|
||||||
|
|
||||||
|
# Rewrite Rules
|
||||||
|
|
||||||
|
# Serving Images
|
||||||
|
RewriteRule ^a/([0-9]+)$ imageserve.php?m=avatar&u=$1
|
||||||
|
RewriteRule ^a/([0-9]+).png$ imageserve.php?m=avatar&u=$1
|
||||||
|
|
19
main/credits.php
Normal file
19
main/credits.php
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Sakura Main Index
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Declare Namespace
|
||||||
|
namespace Sakura;
|
||||||
|
|
||||||
|
// Include components
|
||||||
|
require_once '/var/www/flashii.net/_sakura/sakura.php';
|
||||||
|
|
||||||
|
// Add page specific things
|
||||||
|
$renderData['page'] = [
|
||||||
|
'title' => 'Flashii Dev'
|
||||||
|
];
|
||||||
|
$renderData['newsPosts'] = Main::getNewsPosts(3);
|
||||||
|
|
||||||
|
// Print page contents
|
||||||
|
print Main::$_TPL->render('main/index.tpl', $renderData);
|
5
todo.txt
Normal file
5
todo.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
===
|
||||||
|
todo list
|
||||||
|
===
|
||||||
|
|
||||||
|
> Fix footer resizing because of the removal of the Affiliates section
|
Reference in a new issue