1 mek113 Aug 04, 2009 00:34
3 mek113 Aug 04, 2009 06:52
My .htaccess file reads like this now but still getting the 404 error page.
# CATCH EVERYTHING INTO B2EVO:
# The following will allow you to have URL right off the site root,
# using index.php as a stub but not showing it.
# This will add support for URLs like: http://example.com/2006/08/29/post-title
# Redirect anything that's not an existing directory or file to index.php
#
# RewriteEngine On
# This line may be needed:
RewriteBase /b2/
# Redirect anything that's not an existing directory or file to index.php:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php
4 sam2kb Aug 04, 2009 07:00
Remove the # in line
# RewriteEngine On
5 mek113 Aug 04, 2009 16:59
That worked. Thank you.
6 sam2kb Aug 04, 2009 19:57
No problem
You configured b2evo to use URLs without index.php but you forgot to enable rewriting in .htaccess file.
Just add the following at the end of your .htaccess file