This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/main/.htaccess

35 lines
909 B
ApacheConf
Raw Normal View History

2015-04-01 15:56:51 +00:00
# Block access to every file starting with a dot
<Files ".*">
Require all denied
</Files>
# Set Error documents
ErrorDocument 404 /404.php
ErrorDocument 403 /404.php
ErrorDocument 401 /404.php
# Rewrite Stuff
RewriteEngine on
RewriteBase /
Options +FollowSymLinks -Indexes
# Rewrite Rules
RewriteRule ^feedback?/?$ http://forum.flash.moe/viewforum.php?f=22
RewriteRule ^credits?/?$ credits.php
RewriteRule ^index?/?$ index.php
2015-04-17 22:51:53 +00:00
RewriteRule ^login?/?$|logout?/?$|register?/?$|forgotpassword?/?|authenticate?/?$ authenticate.php
RewriteRule ^donate?/?$ donate.php
RewriteRule ^contact?/?$ contact.php
2015-04-05 16:24:07 +00:00
2015-04-01 17:25:14 +00:00
## Info pages
RewriteRule ^r/([a-z]+)$ infopage.php?r=$1
2015-04-02 14:21:37 +00:00
## News
2015-04-05 16:35:00 +00:00
RewriteRule ^news?/?$ news.php
2015-04-02 14:21:37 +00:00
RewriteRule ^news/([0-9]+)$ news.php?id=$1
RewriteRule ^news.xml$ news.php?xml
2015-04-01 15:56:51 +00:00
# Serving Images
RewriteRule ^a/([0-9]+)$ imageserve.php?m=avatar&u=$1
RewriteRule ^a/([0-9]+).png$ imageserve.php?m=avatar&u=$1