hi,
i'm using .htaccess so that the variables passed through links are not seen.
http://localhost/user/jack should be converted to http://localhost/user/?uid=jack
i used:
RewriteRule ^user/([^.]+)/?$ profile/?uname=$1 [NC,L]
whatever characters is input, i want that to be passed and then check.
everything's working perfect.
but when the following symbols are used, the errors such as these are appearing
Forbidden
You don't have permission to access /user/: on this server.
the symbols which are causing the problems are:
%,*,\,:,",<,>
what should i do to avoid this?