mirror of
https://github.com/amyjko/cooperative-software-development
synced 2024-12-25 21:58:15 +01:00
22 lines
671 B
ApacheConf
22 lines
671 B
ApacheConf
RewriteEngine On
|
|
|
|
# Set the path to prepend to all rewrites.
|
|
|
|
RewriteBase /ajko/books/cooperative-software-development
|
|
|
|
# Define missing mjs MIME type.
|
|
AddType application/javascript .mjs
|
|
|
|
# Remove the ending trailing slash from any requests to avoid resolving to directory listings
|
|
|
|
RewriteRule ^(.*)/$ $1.html
|
|
|
|
# Append .html to any requests with or without a trailing slash that resolve to a file with .html.
|
|
|
|
RewriteCond %{REQUEST_FILENAME}.html -f
|
|
RewriteRule ^(.*)$ $1.html [L,QSA]
|
|
|
|
# If we're processing a path that isn't a file or a directory, rewrite to index but preserve the query string.
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule (.*) 404.html [L,QSA]
|