From 52b077a48c743ba4d08ac00520a0bf1ef6deef5f Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Fri, 24 Feb 2017 21:27:59 +0100 Subject: Initial commit. --- .htaccess | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .htaccess (limited to '.htaccess') diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..c354b0b --- /dev/null +++ b/.htaccess @@ -0,0 +1,42 @@ +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# Apache configuration rules [Thomas Lange ] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# This file contains rewrite rules for Apache. It's recommended to include the # +# rules directly into your Apache configuration for a better performance. Also # +# disable the AllowOverride directive within your Apache virtualhost (if it is # +# not already globally disabled for performance and security reasons both). # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# + +#=============================================================================== +# Enable RewriteEngine and define RewriteBase +#=============================================================================== +RewriteEngine On +RewriteBase / + +#=============================================================================== +# ErrorDocument handler +#=============================================================================== +ErrorDocument 403 /system/403.php +ErrorDocument 404 /system/404.php + +#=============================================================================== +# Forbidden directories +#=============================================================================== +RewriteRule ^core|template/(.*)/(html|lang)/ - [F] + +#=============================================================================== +# Main rules +#=============================================================================== +RewriteRule ^(page|post|user)/([^/]+)/$ system/$1/main.php?param=$2 [L] +RewriteRule ^(page|post|user)/$ system/$1/list.php [L] +RewriteRule ^feed/(page|post)/$ system/feed/main.php?item=$1 [L] +RewriteRule ^(feed|search)/$ system/$1/main.php [L] + +#=============================================================================== +# Trailing slashes +#=============================================================================== +RewriteRule ^(page|post|user)/([^/]+)$ $1/$2/ [R,L] +RewriteRule ^(page|post|user|feed|search)$ $1/ [R,L] +RewriteRule ^feed/(post|page)$ feed/$1/ [R,L] \ No newline at end of file -- cgit v1.2.3