I have the following URL:
http://< site >/restrito/usuarios/pagina/
This page is responsible for displaying a table containing the users registered in the system, can receive numbers as a variable to indicate the page of the table, since I only show values of 20 in 20.
The regular expression that solved my problem was as follows:
RewriteRule ^restrito/usuarios/pagina/([^/.]+) restrito/usuarios.php?pagina=$1 [L]
The problem is that when I use $
to indicate that ER
ends there I get Error 404, and this happens with all other Rules of my .htaccess
.
Would anyone have the solution to this problem?