2

I have done in

Configuration > Web > Use Web Server Rewrites and change to 'Yes'.

When i have set in htaccess Redirect 301 /index.php http://mysite.com/ .Gives error "problem to loading page".

I just want to mysite.com/index.php redirect to root url mysite.com/ in magento.

Is this posible?

Please help.

1 Answer 1

1

Can you try mod_rewrite rule:

# remove index.php
RewriteCond %{THE_REQUEST} /index\.php [NC]
RewriteRule ^(.*?)index\.php$ /$1 [L,R=302,NC,NE]

Also make sure this is first rule.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.