I notice Wikipedia allows them in their URLs, is it legit or does anyone know where it will give me problems?
相关问题
- Angular RxJS mergeMap types
- Google Apps Script: testing doPost() with cURL
- How to instantiate Http service in main.ts manuall
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
- UrlEncodeUnicode and browser navigation errors
相关文章
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
- Is a unicode user agent legal inside an HTTP heade
- git: retry if http request failed
- Flutter - http.get fails on macos build target: Co
- C# HttpClient.SendAsync always returns 404 but URL
- Response body is null, status is 200
- Prevent $anchorScroll from modifying the url
- Returning plain text or other arbitary file in ASP
As per http://www.ietf.org/rfc/rfc1738.txt YES, you can.
refer: http://www.blooberry.com/indexdot/html/topics/urlencoding.htm
Yes. All of the
sub-delims
characters can be used as is in the path. Sub-delimiters include the asterisk (*
) character:There are several types of URIs, but in general, a path is defined as a set of segments separated by a slash:
The segments are composed of characters (
segment-nz
cannot be empty):And
pchar
includessub-delims
:Reference: https://tools.ietf.org/html/rfc3986#appendix-A
It's legit and intended to be a delimiter ; see Uniform Resource Identifier (URI): Generic Syntax