Boa noite gente!
Estou com dificuldades de fazer o spaghetti funcionar no ubuntu pois não estou conseguindo habilitar o Rewrite Module para ler os arquivos .htaccess abaixo segue como está meu script default que fica em /etc/apache2/sites-available :
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /home/david/Sites
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/david/Sites>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
com essa configuração quando tento acessar meu projeto com Spaghetti da erro 403
Desde já agradeço e espero por uma resposta.