diff options
author | Thomas Lange <code@nerdmind.de> | 2024-12-07 20:31:39 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2024-12-07 21:13:28 +0100 |
commit | db7b51e00891e5a67e8be7baa2f3385f74174215 (patch) | |
tree | 9f30d05e92471443240469e552107161ef2c0a93 /core/ws-apache.conf | |
parent | 8ee04e772c8e8c39407595014f366adf48ba9c31 (diff) | |
download | blog-db7b51e00891e5a67e8be7baa2f3385f74174215.tar.gz blog-db7b51e00891e5a67e8be7baa2f3385f74174215.tar.xz blog-db7b51e00891e5a67e8be7baa2f3385f74174215.zip |
Move webserver config files to "core" directory
... and add `/.htaccess` to the ignore list in `.gitignore`.
If one wants to configure Apache by using the good old `.htaccess` file,
all they have to do is copying the `core/ws-apache.conf` to `.htaccess`.
Because of the `.gitignore`, Git will not list the `.htaccess` file as
changed anymore if it contains additional configuration parameters.
Diffstat (limited to 'core/ws-apache.conf')
-rw-r--r-- | core/ws-apache.conf | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/core/ws-apache.conf b/core/ws-apache.conf new file mode 100644 index 0000000..e7b0e10 --- /dev/null +++ b/core/ws-apache.conf @@ -0,0 +1,42 @@ +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# Apache configuration [Thomas Lange <code@nerdmind.de>] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# This file contains the configuration rules for the Apache HTTP server. It is # +# recommended to include these rules directly into the Apache configuration! # +# # +# Additionally, it's recommended to ensure that the AllowOverride directive is # +# disabled if these rules are included in the Apache configuration. Otherwise, # +# the Apache HTTP server is checking for .htaccess files on every request. # +# # +# AllowOverride None # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# + +#=============================================================================== +# Error pages +#=============================================================================== +ErrorDocument 403 /403.php +ErrorDocument 404 /404.php + +#=============================================================================== +# Enable RewriteEngine +#=============================================================================== +RewriteEngine On + +#=============================================================================== +# Forbidden directories +#=============================================================================== +RewriteRule ^(.git|core|theme/([^/]+)/(html|lang))/ - [F] + +#=============================================================================== +# Pass requests to index.php +#=============================================================================== +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule . index.php [L] + +#=============================================================================== +# Redirect from old to new global static dir +#=============================================================================== +#Redirect 301 /rsrc/ /static/ |