hmm, I can’t seem to get pretty URLs working on my local server, I just get “404” errors. The default httpd.conf has this:
Code:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
and then I have a user specific config file where I have this:
Code:
Options +Includes
<Directory "/Users/[user name]/Sites/">
Options Indexes MultiViews +Includes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "/Users/[user name]/Sites/example"
ServerName example.dev
</VirtualHost>
…
(more virtual host names here)
…
This Sites directory is basically the web root of my local server. In that I have different sub directories for all my testing sites. These sites have .htaccess files in their root directories where the rewriting is defined, among other things. It
is obviously rewriting and the error log has no errors except the 404s. What’s my problem?