문제

If i have a url structured like this:

<scheme> : <path> ? <key> = <parameter> & <otherkey> = <otherparamet>

is that a specific 'type' of URL? Im trying to figure out if this conforms to RFC 1738

도움이 되었습니까?

해결책

There are URL's formatted like this:

http://www.example.com/search.php?name=jeremy&state=oh

In this case, the ? starts the query and the & separates the parameters.

The parameters are URIComponentEncoded and may look a bit funny.

다른 팁

I think you're leaving stuff out.... Using those delimiters you gave and in that order, I can construct an HTTP GET request to a specific port, supplying two named identifiers with data values.

http://some.domain.com:portnumber?key1=value1&key2=value2
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top