I would like to create permalink for my url. So I have added .htaccess file to my root but it does not change.
vid is post id and id is page index. Thanks.
http://www.yatha.tv/play.php?vid=954&id=2
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.html$ /play.php?vid=$1&id=$2 [L]
</IfModule>