1
I have the following redirect:
RewriteRule ([^/]*)\/([^/]*) http://ip/~user/codigo.php?nome=$1&numero=$2
To generate the url:
But there are other folders, like Assets/css/main.css and others like /css/name/other.css and these are being redirected to:
Ex: http://www.site.com.br/codigo.php?nome=assets/css&numero=main.css
How to solve the problem?
I tried something like:
RewriteRule ^assets/(.*)$ http://www.site.com.br/assets/$
Observing: there are other folders besides the Assets example and some of them have subfolders and some do not, IE, there is no pattern.