i have problem with my htaccess code the problem is i dont know how can i display the code for index.php , the code that i'm using is
RewriteEngine On
RewriteRule ^Page/([^/]*)$ /Page.php?v=$1 [L]
and my output link is www.expample.com/Page/1
the code above sis working for every thing except the index page
what i need to do now is
index.php instead of Page.php
i tried this way
RewriteRule ^/([^/]*)$ /index.php?v=$1 [L]
but also it's not working
the output that i need now is to convert the link from
www.example.com/index.php?v=1 to www.example.com/1