0
O . htaccess
RewriteEngine On
RewriteRule ^imagine/([^/]+)/([^.]+)$ ver_imaginew_agora.php&id=$1&titulo=$2
RewriteRule ^portifolio/([^/]+)/([^.]+)$ ver_portifilio.php&id=$1&titulo=$2
How I pass the link
<a href="portifolio/<?php echo $lista['id']; ?>/<?php echo $lista['titulo']; ?>">
he can’t find the page that’s there.
Be careful when mounting the URL as
$lista['titulo']
has to be prepared to compose a URL, that is, without accents, spaces, symbols such as?
,!
,>
,&
, etc.– marcusagm