[EMAIL PROTECTED] wrote:

Not Found - The requested URL /aegir/ was not found on this server.


Ok, url rewriting does not work as intended. You can get debug information about the url rewriting with the RewriteLog directive (http://httpd.apache.org/docs/mod/mod_rewrite.html#RewriteLog).

However I would just try to create a file called .htaccess inside your DocumentRoot (which should be c:/Program Files/Apache Group/Apache2/htdocs/.htaccess in your case) with the following content:

RewriteEngine On
RewriteBase /
RewriteCond  %{REQUEST_FILENAME}    !-f
RewriteRule  ^(.*)  /index.php

If you are not able to create this file (windows makes it hard from time to time) you can choose a different filename like my.htaccess

In this case you will need to edit you httpd.conf too. Search a line like

AccessFileName .htaccess

and chance it accordingly.

If all that doesn't help, ask again... :-)

Matthias



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to