I have little problem on the here
http//site.com/detial.php?verifyID=$parametre
i want this like short url :
http://site.com/$parametre
how can we do?
thanks
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^([^/]*)\$ /detial.php?parametre=$1 [L]
# Error Pages
ErrorDocument 404 /404.php
<Files 403.shtml>
order allow,deny
allow from all
</Files>
i am using this but giving 404 error
how can we fix
Try the following code.