Questions about 301 Redirects
-
I have about 10 - 15 URLs that are redirecting to http://www.domainname.comwww.domainname.com/. (which is an invalid URL)The website is on a Joomla platform. Does anyone know how I can fix this? I can't figure out where the problem is coming from.
-
I have seen tghis before, but i think it was a wordpress site, but the problem was a plugin, try diabling your plugins to see if you can narrow it down
-
With Joomla all the url's use $mosConfig_live_site in configuration.php at the start of the URL's and then everything is routed through index.php with query strings.
If you're doing a 301 redirect you might want to have a go at using the following in your .htaccess file, without knowing what your redirecting to what is difficult to provide a correct answer.
RewriteCond %{HTTP_HOST} ^domain.com
RewriteCond %{QUERY_STRING} ^option=com_content&task=view&id=76&Itemid=110$
RewriteRule ^index.php$ /your-new-page/? [R=301,NC,L]
ID is the content ID and Itemid is the id of the link in your menu to that page.
Hope this helps.