Welcome Guest, Not a member yet? Register   Sign In
Requested URL was not found on this server
#12

[eluser]1cookie[/eluser]
hi

[quote author="pickupman" date="1284403468"]Have you allowed .htaccess files in your apache config? Not in ubuntu right now, but I believe it's /etc/apache2/conf/httpd.conf (or site-default).

You need to have
Code:
AllowOverride All
By default this will be set to None.

[/quote]
edit:
<del>
That's strange, my
Code:
httpd.conf
file is located at
Code:
/etc/apache2/httpd.conf
(full path), but it's an empty file?

</del>

forget that! I'm told that The Debian and hence Ubuntu apache2 used apache2.conf, not httpd.conf.

And here's a snippet from apache2.conf

Code:
#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#

AccessFileName .htaccess

No AllowOverride directive listed though?
Quote:The apache error means it's not getting to CI. CI has it's own 404 error. Out of curiosity what happens if you remove the leading / from /index.php in your .htaccess? Or better yet, try using just this in .htaccess
Code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

In your example above, are you referring to a new .htaccess file as:

Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
<IfModule>
specifically?


Smile


Messages In This Thread
Requested URL was not found on this server - by El Forum - 09-12-2010, 10:58 AM
Requested URL was not found on this server - by El Forum - 09-12-2010, 02:07 PM
Requested URL was not found on this server - by El Forum - 09-13-2010, 03:07 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 04:24 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 04:42 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 06:56 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 07:10 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 07:19 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 07:27 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 07:44 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 07:54 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 08:14 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 08:57 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 09:31 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 09:38 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 10:02 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 10:26 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 10:32 AM
Requested URL was not found on this server - by El Forum - 09-13-2010, 10:55 AM



Theme © iAndrew 2016 - Forum software by © MyBB