2011-03-31 00:19:18 -04:00
|
|
|
#Use PHP5 Single php.ini as default
|
2011-02-24 14:25:26 -05:00
|
|
|
AddHandler application/x-httpd-php5s .php
|
|
|
|
|
|
|
|
#Custom error pages
|
|
|
|
ErrorDocument 400 /errors/400.php
|
|
|
|
ErrorDocument 401 /errors/401.php
|
|
|
|
ErrorDocument 403 /errors/403.php
|
|
|
|
ErrorDocument 404 /errors/404.php
|
|
|
|
ErrorDocument 500 /errors/500.php
|
2011-02-24 14:36:54 -05:00
|
|
|
|
|
|
|
#Deny access to git files (actually, return 404 errors)
|
|
|
|
RedirectMatch 404 /\\.git(/|$)
|
|
|
|
RedirectMatch 404 /\\.gitignore$
|
2011-03-31 00:19:18 -04:00
|
|
|
#Deny access to php.ini from web
|
|
|
|
RedirectMatch 404 ^/php.ini$
|
2011-04-14 22:53:33 -04:00
|
|
|
|
|
|
|
#Redirect from old blog location to the new
|
2011-03-23 00:21:26 -04:00
|
|
|
RedirectMatch 301 ^/home/(.*) /blog/$1
|
2011-03-31 00:19:18 -04:00
|
|
|
RedirectMatch 301 ^/home /blog/
|
2011-04-14 22:53:33 -04:00
|
|
|
#Redirect from old resume position to new
|
|
|
|
RedirectMatch 301 ^/Resume.pdf /resume/AaronLindsay-Resume.pdf
|
|
|
|
RedirectMatch 301 ^/Resume.tex /resume/AaronLindsay-Resume.tex
|