I want to be able change the root directory using htaccess.
I want this:
index.php/user/user_postdetail/index/14
To become this:
index.php/post_14.html
I tried using
RewriteRule post_([0-9]+).html$ /index.php/user/user_postdetail/index/$1 [L=301,R]
but I am getting it reverse. Any ideas?
