Hi there poeple,
I'm having some troubles with the RewriteEngine i use in my .htaccess file:
the purpose is that:
www.domain.be/<name>
goes to, while keeps showing URL above ->
www.domain.be/profiel.be?n=<name>
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_\*\ ]+)$ /profiel.php?n=$1
now the problem is that names like the folowing dont work:
- cy.dec (because of the dot)
- cydéc (because of the é)
- ... (and so on, so the weird chars)
is there a solution for this problem ?
All i want to do is redirect everything after the / in the url to the n variable /profiel.php?n=
WHILE the url stays masked (so you keep seeing the original url)