I would like to set up a URL
friendly with generic parameters, that is, receive any parameter in any quantity or file.
Today I set the .htaccess
so that the filename becomes URL
. File I'm using:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*?)$ $1.php
Options -Indexes
ErrorDocument 404 /erro.php
</IfModule>
Example of URL
you'd like:
If anyone knows how to ride, it would be a lot of help.