301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It’s not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it’s the safest option. The code “301” is interpreted as “moved permanently”. […]
Posts in the htaccess category:
Joomla SEF URL issue
Issue : When I set Search Engine Friendly URLs to “YES” and Use Apache mod_rewrite to “NO” in Global Configuration, URLs look like this with an index.php in the URL: http://domainame.com/index.php/mylink.html If I turn Use Apache mod_rewrite to YES, the URLs look correct, but give 404 pages. http://domainame.com/mylink.html Solution : Rename htaccess.txt file to .htaccess […]
301 redirect to new domain
If you have moved your site to a new domain and want that the traffic from the old domain should get redirected to the new domain, add the following lines in the .htaccess file of the old server redirect 301 / http://www.newdomain.com/
How to get my pagerank back for joomla site
I wondered why google is considering http://www.technointellects.com and http://technointellects.com as different sites and rank both the URLs separately Try this quick test for your web site. Navigate to the two following URL’s: http://yoursite.com http://www.yoursite.com If you can actually have these show up in your browser then you have a problem. What is happening is that […]
Enable Disable register global from .htaccess
At times, we need to set register_globals to on or to off and we cannot modify such directive of php from the php.ini for obvious motives. Then we can plan register_globals to on or off through an entry in the file .htaccess in the following manner. For on: php_flag register_globals on For off: php_flag register_globals […]