.htaccess:
Options FollowSymLinks SymLinksIfOwnerMatch Includes
RewriteEngine On
RewriteRule ^country/(.*).html
/mywebsite/cgi-bin/countries.cgi?continent=$1
httpd.conf:
<Directory />
Options FollowSymLinks SymLinksIfOwnerMatch +ExecCGI Includes
AllowOverride All
</Directory>
> .... ... so what's the problem here?
> .htaccess:
> Options FollowSymLinks SymLinksIfOwnerMatch Includes
> RewriteEngine On
> RewriteRule ^country/(.*).html
> /mywebsite/cgi-bin/countries.cgi?continent=$1
>
> httpd.conf:
> <Directory />
> Options FollowSymLinks SymLinksIfOwnerMatch +ExecCGI Includes
> AllowOverride All
> </Directory>
Warning
Mixing Options with a + or - with those without is not
valid syntax, and is likely to cause unexpected results.
http://httpd.apache.org/docs/2.2/mod/core.html#options
HansH