Guest User

Untitled

a guest
Feb 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1.  
  2. scheme = ( alpha | digit | "+" | "-" | "." )* ;
  3. absolute_uri = (scheme ":" (uchar | reserved )*);
  4.  
  5. path = (pchar+ ( "/" (pchar*) )* ) ;
  6. query = ( uchar | reserved )* ;
  7. param = ( pchar | "/" )* ;
  8. params = (param ( ";" param )*) ;
  9. rel_path = (path? (";" params)?) ("?" query)? ;
  10. absolute_path = ("/"+ rel_path);
  11.  
  12. Request_URI = ("*" | absolute_uri | absolute_path) ;
Add Comment
Please, Sign In to add comment