in .htaccess imposibla use space, non-Latin characters and etc. ?
For example how, fix this:
RewriteRule ^/(.*)/new user/(.*)$ /page/?id=$1 [QSA,L,E]
this decision is not me:
... /new_user/ ...
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have to escape the reserved characters for URIs with their respective character codes in percent-encoding, e. g.
%20for a space.See http://en.wikipedia.org/wiki/Percent-encoding for more details.