It apperrs that Either something went wrong or the mod rewrite configration is not correct.
We need to allow Apache to read .htaccess files located under the /www/sites/www.furs.live/index directory. You can do this by editing apache configuration file:
Find the section <directory /var/www/html>
and change AllowOverride None to AllowOverride All
sudo nano /etc/apache2/apache2.conf
After edit the above file your code should be like this
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
In order to use mod_rewrite you can type the following command in the terminal:
sudo a2enmod rewrite
Restart apache2 after
sudo /etc/init.d/apache2 restart
or
sudo service apache2 restart