错误:

Options FollowSymLinks and SymLinksIfOwnerMatch are both off, so the RewriteRule directive is also forbidden due to its similar ability to circumvent directory restrictions

解决方法

1、检测启用rewrite

http.conf

LoadModule rewrite_module modules/mod_rewrite.so
<Directory />
Options Indexes FollowSymLinks 
AllowOverride All
</Directory>

httpd-fcgid.conf

#Options 的选项加上 FollowSymLinks
<Files ~ "\.php$">
    Options ExecCGI FollowSymLinks
    AddHandler fcgid-script .php
    FcgidWrapper "C:/php/php-cgi.exe" .php
</Files>