I want to do 301 redirection after removing index.php in codeigniter.
htaccess file:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|img|js|plugins|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
After this I added
RewriteRule /index.php?page=9-someting&txt=12 /page/1/someting#2/other [R=301,L]
but redirection does not work any help?
EDIT:
/index.php?page=9-someting&txt=12 the old site that was not written in CodeIgniter