Hi All,Can anyone help me please with a small redirecting rule. I want to redirect all the urls that contains index.php to the home page "/" For example all this links should be redirect to home page: www.site.com/index.php ..to ....www.site.com www.site.com/index.php?_id_prod_35 ...www.site.com no matter how long is the url and the format. If it contain inde.php inside..then i would like to to be redirected to the home page. can anyone help me please? thanks in advance.
You need to create .htaccess file and need to be inserted with the following code: RewriteEngine On RewriteCond %{HTTP_HOST} ^site\.com$ [NC] RewriteRule ^(.*)$ http://www.site.com/$1 [R=301,L] After you are done with it, put this file in the root directory of your website. Hope this helps! Maneet Puri