View Full Version : 302 Found error
ralkana
01-08-2006, 06:16 AM
I've just upgraded my site to Joomla (or, actually, John in Support did - thanks John). Now when I use the URL www.mysite.com, rather than just mysite.com, I get the message:
302 Found
Found
The document has moved here. ("here" is a link to the www address of my site)
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
The only new thing that I've done (apart from the upgrade) is to use the 404sef component.
Suggestions?
It might be from the component..
What can be done easily is to create a htaccess all traffic from www.yoursite.com to just yoursite.com. Of course, this is not a solution but just a workaround.
If we see the site, may be we will be able to help.
You can contact the support team too :)
ralkana
01-18-2006, 12:31 AM
Thanks Tom, I think you're right.
The .htaccess file is a mystifying little widget. I might take you up on editing it for me if I decide to finally install the component (I've disabled it currently).
davis420
03-12-2006, 08:33 AM
I am having the same problem described by the other person-
After installing 404sef, I can go to http://happyrouter.com and everything works great, including the new friendlier links. However, if I go to http://www.happyrouter.com, I get a 302 error.
When disabling 404sef, everything works fine again.
I will paste in my .htaccess file below.
Please help
Thanks
David
##
# @version $Id: readme.inc,v 1.3 2005/02/13 18:03:41 marlboroman_2k Exp $
# @package Mambo_4.5
# @copyright (C) 2000 - 2004 Miro International Pty Ltd
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Mambo is Free Software
##
#
# mod_rewrite in use
#
DirectoryIndex index.php
RewriteEngine On
# for apache on windows you might need to uncomment
# this Options line
#Options +SymlinksIfOwnerMatch
# Uncomment following line if your webserver's URL
# is not directly related to physival file paths.
# Update YourMamboDirectory (just / for root)
RewriteBase /
#
# Rules
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php
#Options +FollowSymLinks
#RewriteEngine On
#RewriteCond %{REQUEST_FILENAME} !\.(jpg|jpeg|gif|png|css|js|pl|txt)$
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*) index.php