I want to redirect my site to friendly. I have my website pull data from database and adress is /post?id=1 and i want to change it to /post/1 I already wrote the code for rewrite but i cant make sense from google research how to redirect to /post/1.
my code
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^post/([^/.]+)/?$ post.php?id=$1 [L]