blob: 2f93bc3cc4c6befe02fbfdbd4e23f3445c7e5b8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Apache configuration for code.fixmystreet.com.
#
# Copyright (c) 2012 UK Citizens Online Democracy. All rights reserved.
# Email: struan@mysociety.org; WWW: http://www.mysociety.org
<Location /fcgi>
Options +ExecCGI
SetHandler fastcgi-script
</Location>
RewriteEngine on
#RewriteLog /var/log/apache2/rewrite.log
#RewriteLogLevel 5
# PHP files can be referred without PHP
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI}.php -f
RewriteRule /(.+) /$1.php [PT]
|