Hello, How can i make sure that a url say. example.com/Make-Money points automatically points to example.com/make-money.. right now if I enter example.com/Make-Money instead of example.com/make-money its showing 404 error... please suggest a solutions...
I would really use only lower case whenever possible. Now, if you mean you have text on a web site that is a link, then use url around the text with uppercase: Here is text and more text blah blah and here's how you can <a href="example.com/make-money">Make Money</a>! Blah blah more text... Code (markup): The person reading the website sees Here is text and more text blah blah and here's how you can Make Money! Blah blah more text... ...with an underline under the words "Make Money". Clicking on the link will take the person to example.com/make-money. IF you meant in a forum, then use this: Here is some text, and go to <url="http://example.com/make-money">Make-Money</url> to make money! Code (markup): CHANGE THE < and > to [ and ] (I had to use the < tags to make it show up) Here is some text, and go to Make-Money to make money!
For the url, it is the address to the actual page. In your case, it is the lower case url. You can wrap around the upper case text with the <a> tag. e.g. < a href=lowercase url> uppercase url </ a>
I guess you guys didnt get me well i wil tell you... in detail... I have used php redirect to hide my affiliate link.. now the URL http://www.minterest.com/go/Yahoo-Domains.php forwards to my yahoo affiliate link but if we enter http://www.minterest.com/go/yahoo-domains.php instead then it gives a page not found error... Also in our system we cant create a file Yahoo-Domains.php when a file called yahoo-domains exist but when i tried to create this in the server it worked... so I dont expect that I want my server to be not CASE SENSITIVE... how can I do like that...