I'm attempting to debug rewriting in a joomla website on xampp. What I observe is the following
- the website is working
- After I enable URL rewrite in the Joomla BE none of the links work, but the main page still works. I conclude that the rewrite is not working proper.
- I have activated (renamed) the .htaccess in the root
- I've added LogLevel warn rewrite:trace6 to the httpd.conf and restarted Apache.
I've consulted http://httpd.apache.org/docs/2.4/mod/mod_rewrite.html#logging and http://docs.joomla.org/Enabling_Search_Engine_Friendly_(SEF)_URLs
Not sure if this is relevant, but my websites are configured with:
<VirtualHost *:80>
UseCanonicalName Off
VirtualDocumentRoot "D:/srv/htdocs/%2/%1"
ServerAlias *.*.localhost
</VirtualHost>
in httpd-vhosts.conf that enables me to have multiple websites
But even if I configure it as a non virtual host it still does not create log entries for rewrite, neither in error_log nor in access_log.