I am facing rewrite url issue.
Current website url :
testwebsite.com/dev/films.php?id=test
I want :
testwebsite.com/dev/test
I tried too many htaccess changes but it is not working.
I think below it must work
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^dev/([0-9]+)-([a-z]+)/ http://testwebsite.com/dev/films.php?id=$1 [NC]
unfortunately, i got 404 page not found.
When i removed htaccess and tried
testwebsite.com/dev/films/test
it is working. I dont have c panel access. Is there server side redirection?
I dont know what is the issue? How do i solved