I have a problem with assets that do not load. I'm using local server so I can not put the absolute path in CSS .
The link was like this:
post.php? id = 79
And now it's like this
post / 79
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^contato/?$ contato.php [NC,L]
RewriteRule ^blog/?$ blog.php [NC,L]
RewriteRule ^sobremim/?$ sobremim.php [NC,L]
RewriteRule ^inicio/?$ index.php [NC,L]
RewriteRule ^(.+)/(admin|css|fonts|ico|include|js|images)/(.*)$ $2/$3 [L]
RewriteRule ^postagem\/([a-zA-Z0-9]+)$ postagem.php?id=$1&slug=$2
</IfModule>