I’d like to convert a direct link, such as:
index.php/my-news-title-here
into
leggi.php?permalink=my-news-title-here
I’ve read a lot of solutions but I’m not able to sort it out… this is my actual .htaccess
RewriteEngine on
RewriteBase /
RewriteRule ^(?:.*/)?(d+) /leggi.php?permalink=$1 [L,QSA,NC]
but if I put a simple $_GET[‘permalink’], nothing appears
any helpful suggestions?
I’d like to convert a direct link, such as:
index.php/my-news-title-here
into
leggi.php?permalink=my-news-title-here
I’ve read a lot of solutions but I’m not able to sort it out… this is my actual .htaccess
RewriteEngine on
RewriteBase /
RewriteRule ^(?:.*/)?(d+) /leggi.php?permalink=$1 [L,QSA,NC]
but if I put a simple $_GET[‘permalink’], nothing appears
New contributor
Marco Scarpa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.