0

I have got url like this:

http://www.example.com/index.php/shop/productname

or like this

http://www.example.com/index.php/productname

How Can i redirect all this pages to own, but without index.php?

I want to see

http://www.example.com/shop/productname and http://www.example.com/productname

1 Answers1

0

Here is what you need: RewriteRule ^index\.php/(.+)$ /$1 [R=301,L]

bswiatek
  • 1
  • 3