Hi, I have a question about htaccess.
I have the following code:
RewriteRule ^([0-9a-zA-Z\-\_]+)$ ./profil.php?user=$1
This of course suports numbers, letters, capital letters, dash and underscore.
If I add a \. for it to support a dot, it gives me an error. How to add dot ?
Also, how to remove white space in links with htaccess ? I had a problem with someone that created a profile with space in his name. How to remove it or replace it with %2f or + or - or anything else ?
Thank you!