Example
http://www.domainname.com/page-param1-param2.html
…it will work fine but
http://www.domainname.com/page-param-1-param2.html
… here param one have the data like param-1 this time url is not working.
How do I get this to work?
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.
Looks like you should use a different syntax, perhaps – there’s no way to tell whether it should interpret the “1” as part of the first parameter or not. Alternatively, you could escape the – in “param-1” by encoding the – as “%2D” (no quotes).
So for example, your link would be: http://www.domainname.com/page-param%2D1-param2.html