Skip to content

Instantly share code, notes, and snippets.

@marcinkieruzel
Created January 3, 2018 10:40
Show Gist options
  • Save marcinkieruzel/f0ea11c00385ab9b066f1eab03ca5f4d to your computer and use it in GitHub Desktop.
Save marcinkieruzel/f0ea11c00385ab9b066f1eab03ca5f4d to your computer and use it in GitHub Desktop.
:Location /*.php
Use php56
:Location
# Set the default handler.
DirectoryIndex index.php index.html index.htm
# Prevent directory listing
Options -Indexes
# Make sure MultiViews is disabled if available.
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
#<FilesMatch "\.(yml|db|twig|md)$">
# <IfModule mod_authz_core.c>
# Require all denied
# </IfModule>
# <IfModule !mod_authz_core.c>
# Order deny,allow
# Deny from all
# </IfModule>
#</FilesMatch>
<IfModule mod_rewrite.c>
RewriteEngine on
Redirect 301 /zglos-kandydata http://formularz.nagrodaprb.pl [L]
RewriteRule cache/ - [F]
# Some servers require the RewriteBase to be set. If so, set to the correct folder.
# RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ ./index.php [L]
</IfModule>
# set the correct mime type for woff2 font type
# =============================================
# if you don't set your own mimetypes or you aren't using
# HTML5 Boilerplate Server Configs https://github.com/h5bp/server-configs-apache
# then you can uncomment (delete the hash/pound/octothorpe/number symbol) the section below:
#<IfModule mod_mime.c>
# AddType application/font-woff2 woff2
#</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment