With .htaccess I need to release one url level to block the others with 404 error being:
/ example (can)
/ example / (can)
/ example / any_thing ( can not )
RewriteEngine On
RewriteRule %{REQUEST_FILENAME} !-f
RewriteRule %{REQUEST_FILENAME} !-d
RewriteRule (^.*)$ index.php?piada=$1 [QSA,L,NC]
My current code or skip everything after the bar, or just work with the bar. Am I lousy with .htaccess can you help me?