The requested URL was not found on this server
6 Replies
options -indexes
RewriteRule ^(application|system|.svn) index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index.php|public|images|robots.txt|css)
RewriteRule ^(.*)$ index.php/$1 [L]
<directory path="" to="" your="" document-root="">AllowOverride all</directory>
Place this in your virtualhost config. Remember to update the path to match the path of your DocumentRoot.
How do I close the question?
@buzzly:
If you have .htaccess in tact, and mod_rewrite is installed then you probably need to empower .htaccess with:
<directory path="" to="" your="" document-root="">AllowOverride all</directory>
Place this in your virtualhost config. Remember to update the path to match the path of your DocumentRoot.