Forum Moderators: open

Message Too Old, No Replies

can someone tell me what this is?

         

tonynoriega

6:09 pm on Nov 29, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



google says i have this 404 error, but i dont know what the heck all the garbage in the URL is...

http://www.example.com/%3Cstrong%3Esuper%3C/strong%3E-cool-%3Cstrong%3Eproducts%3C/strong%3E/index.asp

thanks

[edited by: encyclo at 6:12 pm (utc) on Nov. 29, 2006]
[edit reason] switched to example.com [/edit]

coopster

7:14 pm on Nov 29, 2006 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



You need to "decode" the url string. Here you go:

http://www.example.com/<strong>super</strong>-cool-<strong>products</strong>/index.asp

tonynoriega

8:46 pm on Nov 29, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



is that ASCII code for those characters?

i tried to google the %3C, but no luck...

thanks

rocknbil

9:52 pm on Nov 29, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Try again, but search for 'ASCII character set', you will find lots of pages with conversions to both hexideximal and octal equivalents. :-)

coopster

6:24 pm on Nov 30, 2006 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



Exactly. And the syntax and semantics of URL Character Encoding can be found in RFC1738 [ietf.org].

Archer74

5:56 am on Dec 1, 2006 (gmt 0)

10+ Year Member



thats hex code isnt it?

%30 is <
%3E is >

coopster

2:59 pm on Dec 1, 2006 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



... as mentioned by rocknbil. The less than sign is actually %3C though, not %30 -- a minor correction ;)

Welcome to WebmasterWorld, Archer74.

tonynoriega

3:28 pm on Dec 1, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



so my question now is...

how can you add attributes to a URL?

hence, <strong> portion of url </strong>

apparently google says, once upon a time, my site had this URL?

any ideas...

encyclo

3:48 pm on Dec 1, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It's the result of a broken link, for example missing the closing bracket and quote mark in the markup:

<a href="http://www.example.com/<strong>super</strong>...

which should read:

<a href="http://www.example.com/[b]">[/b]<strong>super</strong>...

If the broken link is on your site (check the referer string in your logs) then you can correct the error, if it is on another site, so can ask them to correct their link (don't hold your breath) or try to redirect visitors to the correct URL.

coopster

4:53 pm on Dec 1, 2006 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



I'll bet it was a typo during development. If you accidentally hit a sequence of keys in some WYSIWYG editors it will automatically drop in begin and end elements on a selected word. "Ctrl B" is a standard in many WYSIWYG editors for bolding (strong) a selection.

tonynoriega

5:19 pm on Dec 1, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



ohhh jeez...ill bet it is on another site, becuase i searched my entire site for any key elements in that URL string and nothing was returned...

this will be fun...

maybe i can google it and find it somewhere...

thanks everyone....i learned something new..

Candid India

11:21 am on Dec 5, 2006 (gmt 0)



Please decode it again i m giving you a link as an example.

http://www.example.com/<strong>super</strong>-cool-<strong>products</strong>/

tedster

5:48 pm on Dec 5, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You cannot put html mark-up directly into the URL. Try something like this:

<a href="http://www.example.com/super-cool-products/>http://www.example.com/<strong>super</strong>-cool-<strong>products</strong>/</a>