Recent Topics

1 Jan 06, 2010 21:44    

My b2evolution Version: 3.3.3

version: b2evo 3.3

site: www.ericasp.com
subdomain: proverbs365.ericasp.com

b2evo is installed as the root of the site, and my client has multiple blogs runing. one of the blogs (off of the same install), uses the subdomain above. for that blog alone, we're having problems with extra-path. when you view an individual post or try to comment, it doesn't load the post. if we use "param" instead of "extra-path" it does work...

any thoughts?

will

2 Jan 06, 2010 23:07

Create the .htaccess file in b2evo root directory, and add the following in it.

# 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

RewriteEngine On

# This line may be needed:
RewriteBase /

# Redirect anything that's not an existing directory or file to index.php:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^  index.php

If this doesn't work, you should change the URL of the problem blog to http://proverbs365.ericasp.com/index.php

3 Jan 07, 2010 01:30

that go it! thanks so much!


Form is loading...