mirror of
https://github.com/typemill/typemill.git
synced 2025-01-17 13:28:19 +01:00
28 lines
827 B
ApacheConf
28 lines
827 B
ApacheConf
RewriteEngine On
|
|
|
|
# If your homepage is http://yourdomain.com/yoursite
|
|
# Set the RewriteBase to:
|
|
# RewriteBase /yoursite
|
|
|
|
# In some environements, an empty RewriteBase is required:
|
|
# RewriteBase /
|
|
|
|
# Protect your system files from prying eyes
|
|
RewriteRule ^(system\/author\/) - [L]
|
|
RewriteRule ^(system) - [F,L]
|
|
RewriteRule ^(content) - [F,L]
|
|
RewriteRule ^(.*)?\.yml$ - [F,L]
|
|
Rewriterule ^(.*)?\.yaml$ - [F,L]
|
|
RewriteRule ^(.*)?\.txt$ - [F,L]
|
|
RewriteRule ^(.*)?\.example$ - [F,L]
|
|
RewriteRule ^(.*/)?\.git+ - [F,L]
|
|
|
|
# Use this to redirect www to non-wwww on apache servers
|
|
# RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
|
|
# RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
|
|
|
|
# Remove the index.php
|
|
RewriteCond %{REQUEST_URI} !^/index\.php
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^ index.php [QSA,L] |