bw8320
That means you don't have URL Rewriting enabled on your webserver. You need to install URL Rewriting module for Apache (or IIS). If using Apache you may also need to update your site config file to add the following option to your site specific block (eg. <Directory /var/www/html/example>...</Directory>
):
<Directory /var/www/html/example>
AllowOverride All
</Directory>
Cheers.