I would like to change a url like
http://mydomain.xx/details.php?title=Hilton+Knoxville
into
http://www.mydomain.xx/detail.php/hilton-knoxville
using the .htaccess file.
Can someone help me to write it ?
You can use the following code in your /.htaccess :
RewriteEngine On
RewriteCond %{THE_REQUEST} /details\.php\?title=([^&\s]+) [NC]
RewriteRule ^details.php$ /%1? [NE,NC,R,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/?$ /details.php?title=$1 [QSA,L,NC]