[Solved] Need help for .htaccess from OOP php to CodeIgniter [closed]


In the htaccess file in your document root, you need to add your redirect rules before any of the other rules that yo uhave there for CodeIgniter:

RewriteEngine On

RewriteRule ^Occassional-Special/([0-9]+)/Birthday/([0-9]+)/$ /products/Occassional/$1/Birthday-Gifts/$2/ [L,R=301]

You’ll need to do the same thing (or something similar) for all of your other broken links.

2

solved Need help for .htaccess from OOP php to CodeIgniter [closed]