On Fri, Jun 8, 2012 at 1:21 PM, Peter Humphrey <pe...@humphrey.ukfsn.org> wrote:
>> If you want help with the specific error I would suggest posting the
>> contents of the .htaccess file and which version of Apache you're
>> using.
>
> Right, thanks! Sorry about the word-wrap.
>
> $ cat .htaccess
> RewriteEngine on
>
> RewriteCond %{HTTP_REFERER} !^http://tideswellmvc.co.uk/.*$      [NC]
> RewriteCond %{HTTP_REFERER} !^http://tideswellmvc.co.uk$      [NC]
> RewriteCond %{HTTP_REFERER} !^http://www.tideswellmvc.co.uk/.*$
> [NC]
> RewriteCond %{HTTP_REFERER} !^http://www.tideswellmvc.co.uk$      [NC]
> RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
>
> Options +Includes

I suspect this particular error ("Options not allowed here") is
because this .htaccess is running in a user home directory, and
Options +Includes can't be set by a user. You may need to declare that
in your apache httpd.conf "Directory" section for that path, rather
than in the .htaccess file.

Reply via email to