Hi i would like to change the url from:
http://example.com/news.php?id_news=1 to http://example.com/news/1
and
http://example.com/works.php?id_works=14 to http://example.com/works/14
with .htaccess
Hi i would like to change the url from:
http://example.com/news.php?id_news=1 to http://example.com/news/1
and
http://example.com/works.php?id_works=14 to http://example.com/works/14
with .htaccess
My guess out of the blue is something like
RewriteEngine On
RewriteCondition %{QUERY_STRING} ^id_([a-z]+)=([0-9]+)$
RewriteRule /^%1\.php$/ %1/%2?