US20080033945A1 - Search engine system supporting inclusion of unformatted search string after domain name portion of url - Google Patents

Search engine system supporting inclusion of unformatted search string after domain name portion of url Download PDF

Info

Publication number
US20080033945A1
US20080033945A1 US11/842,011 US84201107A US2008033945A1 US 20080033945 A1 US20080033945 A1 US 20080033945A1 US 84201107 A US84201107 A US 84201107A US 2008033945 A1 US2008033945 A1 US 2008033945A1
Authority
US
United States
Prior art keywords
url
search
string
request
web site
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US11/842,011
Inventor
Andrew Jassy
Udi Manber
Jonathan Leblang
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Individual filed Critical Individual
Priority to US11/842,011 priority Critical patent/US20080033945A1/en
Publication of US20080033945A1 publication Critical patent/US20080033945A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/951Indexing; Web crawling techniques
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/955Retrieval from the web using information identifiers, e.g. uniform resource locators [URL]
    • G06F16/9566URL specific, e.g. using aliases, detecting broken or misspelled links
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99941Database schema or data structure
    • Y10S707/99944Object-oriented database structure
    • Y10S707/99945Object-oriented database structure processing
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99941Database schema or data structure
    • Y10S707/99948Application of database or data structure, e.g. distributed, multimedia, or image

Definitions

  • a user conducts a search by retrieving a search page of a web site, entering a search string into a search box, and then selecting a button for submitting the search string as a search query or request.
  • the search string may be a search phrase in which individual terms are separated by spaces, or may consist of a single search term.
  • the results of the search query are provided to the user on one or more search results pages.
  • Some search engine sites support the ability for a user to submit a search query by encoding the search string within a URL (Uniform Resource Locator).
  • a URL Uniform Resource Locator
  • the present invention comprises a web site system that includes functionality for searching a repository of information, such as the World Wide Web, by including a search string at the end of a URL without any special formatting.
  • the search string may consist of a single search term, or a plurality of search terms separated by spaces. For example, a user wishing to search for “San Francisco Hotels” may do by simply accessing the URL www.domain_name/San Francisco Hotels, where domain name is a domain_name associated with the web site system.
  • the system may also support the use of Boolean operators and/or other types of operators within the search strings.
  • the system when the system receives a request for a URL of the form www.domain_name/char_string, where char_string is a character string that may include spaces and non-alphabetic characters, the system initially determines whether the character string includes a prefix that identifies the URL as a non-search-request URL. If no such prefix is present, the character string is used in its entirely as a search string to execute a search, and the results of the search are returned to the user. Otherwise, the URL request is processed as a non-search-request URL by, for example, retrieving a static web page or other object from a subdirectory.
  • FIG. 1 illustrates a method for processing URL requests in accordance with one embodiment of the invention.
  • FIG. 2 illustrates one example of a set of components that may be used to implement the invention.
  • FIG. 1 illustrates a method by which URL request messages from users are processed in a preferred embodiment of the invention. As described below, the method depicted in FIG. 1 may be implemented within software that runs on one or more servers that process request messages from web clients.
  • a URL request message such as an HTTP message of the form GET URL
  • the URL included in this request message is of the form www.domain_name/char_string, where domain_name is a domain name of a web site system to which the requested is directed (e.g., “a9.com”), “/” is a separator character, and char_string is a character string that may or may not be a search string.
  • the character string may include spaces, slashes, hyphens, and other types of non-alphabetic characters. Although a forward slash is used in this embodiment, a different separator character, such as a question mark, may alternatively be used.
  • the URL is initially processed by determining whether char_string starts with a predefined prefix, such as the two-character prefix “ ⁇ /”, that is used to distinguish search request URLs from non-search-request URLs.
  • the prefix may have any desired length, such as one, two, three, or four characters.
  • a prefix that is not likely to appear within search strings submitted by users is preferably used.
  • char_string does not start with the predefined prefix
  • char_string is treated in its entirely as a search string for performing a search.
  • the URL is www.a9.com/San Francisco Hotels
  • the string “San Francisco Hotels” would be used as a search string (and more specifically, a keyword phrase) for performing a search.
  • the searches are executed as web searches to locate web pages and other types of documents on the World Wide Web.
  • the searches may additionally or alternatively be directed to another type of content repository, such as, for example, a database of published literature, a database or electronic catalog of products, or a database of online auctions.
  • the results of the search are incorporated into a search results page, which is returned to the user/web client that submitted the request.
  • a user may also perform a search by submitting a search string from a conventional search page, which may be retrieved by requesting a URL of the form www.domain_name or www.domain_name/.
  • char_string starts with the predefined prefix, the URL is treated as a non-search-request URL.
  • char_string is treated as a further reference to a directory or object in this scenario, and not as a search string.
  • the URL www.a9.com/ ⁇ /index.htm would be treated as a request for the web page at this address, while the URL www.a9.com/index.htm would be treated as a request to search the World Wide Web for “index.htm.”
  • two or more different prefixes may be recognized by the system as signifying the user's intent not to use char string as search string.
  • the web page or other object referenced by the non-search-request URL is returned to the user/web client in block 20 .
  • An important benefit of the method shown in FIG. 1 is that users can add their search strings to the web site's base URL without the addition of any special characters to indicate an intent to conduct a search. For instance, a user wishing to search the web for “NFL scores” can just request the URL “www.a9.com/NFL scores”. Another benefit is that users can use spaces to separate search terms, as is currently the convention for entering search strings on Internet search pages. An additional benefit is that the search string may appear at the very end of the URL.
  • FIG. 1 various modifications can be made to the method shown in FIG. 1 .
  • One such modification is to treat all URLs of the format www.domain_name/char_string as search request URLs. If this approach is used, a subdomain (e.g., www.pages.a9.com) may be provided for accessing other content of the web site.
  • Another variation is to treat certain URLs that lack the full prefix as search requests if such URLs are otherwise invalid. For example, assuming “ ⁇ /” is used as the only valid prefix, a request for www.a9.com//text may be treated as a request to search for “text” if the URL does not point to a valid subdirectory or object.
  • a suffix rather than a prefix
  • a URL of the format www.domain_name/char_string may be treated as a non-search-request URL if and only if char_string ends with a predefined suffix such as “/ ⁇ ” or “/ ⁇ /”.
  • FIG. 2 illustrates components of a web site system 30 in which the invention may be embodied.
  • the system includes a web server 32 that processes request messages received over the Internet from user computing devices 34 , each of which runs a web browser or other web client program.
  • the user computing devices 34 may include, for example, personal computers (PCs), personal digital assistants (PDAs), cellular telephones, and other types of devices that support web browsing.
  • PCs personal computers
  • PDAs personal digital assistants
  • cellular telephones and other types of devices that support web browsing.
  • the web server 32 includes, or runs in conjunction with, a local director component 36 that is responsible for decoding URL requests as depicted in FIG. 1 to evaluate whether each such request should be treated as a search request.
  • the local director 36 operates by analyzing each URL request according to a set of rules, and by passing URLs or URL parameters to specific physical servers or services based on the results of this analysis.
  • a search request URL is received (e.g., www.a 9 .com/char string, where char_string does not start with the predefined prefix)
  • the web server/local director passes the URL, or the search string portion of the URL, to a query server 40 for processing.
  • the query server 40 applies the search string to an index of web pages and/or other content 42 to execute the search request.
  • this task is performed by treating each term in the search string, except for noise words such as “and,” “a,” and “the,” as a keyword.
  • the search string may include one or more groups of words (which may be demarcated using quotations), and may include Boolean operators (e.g., AND, OR and NOT) and/or other operators (e.g., +, ⁇ , parenthesis, and NEAR); if no quotations or operators are present, each term, excluding any noise words, may be treated as a keyword.
  • Boolean operators e.g., AND, OR and NOT
  • other operators e.g., +, ⁇ , parenthesis, and NEAR
  • the web server/local director When a non-search-request URL is received, such as the URL www.a9.com/ ⁇ /jobs.htm, the web server/local director preferably uses the URL to access a repository 46 in which content is arranged within a directory structure. This may involve passing the URL to a separate server or service responsible for retrieving or generating the content, depending upon the type of content being requested (e.g., static versus dynamic web page).

Abstract

A web site system provides functionality for searching a repository of information, such as the World Wide Web, by including a search string at the end of a URL without any special formatting. In one embodiment, when the system receives a request for a URL of the form www.domain_name/char_string, where char_string is a character string that may include spaces and non-alphabetic characters, the system initially determines whether the character string includes a prefix that identifies the URL as a non-search-request URL. If no such prefix is present, the character string is used in its entirely as a search string to execute a search, and the results of the search are returned to the user.

Description

    PRIORITY CLAIM
  • This application is a continuation of U.S. Patent application Ser. No. 10/924,521, filed Aug. 23, 2004, which is a continuation of U.S. Patent application Ser. No. 10/792,405, filed Mar. 3, 2004. The disclosures of the aforesaid applications are hereby incorporated by reference.
  • BACKGROUND
  • Numerous web sites exist that provide search engines for allowing users to conduct searches of the World Wide Web and other repositories of content. Typically, a user conducts a search by retrieving a search page of a web site, entering a search string into a search box, and then selecting a button for submitting the search string as a search query or request. The search string may be a search phrase in which individual terms are separated by spaces, or may consist of a single search term. The results of the search query are provided to the user on one or more search results pages.
  • Some search engine sites support the ability for a user to submit a search query by encoding the search string within a URL (Uniform Resource Locator). Typically, however, the user must encode the search string in the URL using special formatting that is inconvenient or unnatural for users to type. For example, in some cases, users must add a special string such as “query=” to indicate that a search is being requested, and/or must add special characters to the search string itself As one example, the URL www.google.com/search?q=mars%20rover may be used to the search for “mars rover.”
  • SUMMARY
  • The present invention comprises a web site system that includes functionality for searching a repository of information, such as the World Wide Web, by including a search string at the end of a URL without any special formatting. The search string may consist of a single search term, or a plurality of search terms separated by spaces. For example, a user wishing to search for “San Francisco Hotels” may do by simply accessing the URL www.domain_name/San Francisco Hotels, where domain name is a domain_name associated with the web site system. The system may also support the use of Boolean operators and/or other types of operators within the search strings.
  • In one embodiment, when the system receives a request for a URL of the form www.domain_name/char_string, where char_string is a character string that may include spaces and non-alphabetic characters, the system initially determines whether the character string includes a prefix that identifies the URL as a non-search-request URL. If no such prefix is present, the character string is used in its entirely as a search string to execute a search, and the results of the search are returned to the user. Otherwise, the URL request is processed as a non-search-request URL by, for example, retrieving a static web page or other object from a subdirectory.
  • Neither this summary nor the following detailed description purports to define the invention. The invention is defined by the claims.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 illustrates a method for processing URL requests in accordance with one embodiment of the invention.
  • FIG. 2 illustrates one example of a set of components that may be used to implement the invention.
  • DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
  • Specific embodiments of the invention will now be described with reference to the drawings. These embodiments are intended to illustrate, and not limit, the invention. The scope of the invention is defined by the claims.
  • FIG. 1 illustrates a method by which URL request messages from users are processed in a preferred embodiment of the invention. As described below, the method depicted in FIG. 1 may be implemented within software that runs on one or more servers that process request messages from web clients.
  • As depicted by block 10, a URL request message, such as an HTTP message of the form GET URL, is initially received from user/web client. The URL included in this request message is of the form www.domain_name/char_string, where domain_name is a domain name of a web site system to which the requested is directed (e.g., “a9.com”), “/” is a separator character, and char_string is a character string that may or may not be a search string. The character string may include spaces, slashes, hyphens, and other types of non-alphabetic characters. Although a forward slash is used in this embodiment, a different separator character, such as a question mark, may alternatively be used.
  • As depicted by block 12, the URL is initially processed by determining whether char_string starts with a predefined prefix, such as the two-character prefix “−/”, that is used to distinguish search request URLs from non-search-request URLs. The prefix may have any desired length, such as one, two, three, or four characters. A prefix that is not likely to appear within search strings submitted by users is preferably used.
  • As depicted by block 14, if char_string does not start with the predefined prefix, char_string is treated in its entirely as a search string for performing a search. For example, if the URL is www.a9.com/San Francisco Hotels, the string “San Francisco Hotels” would be used as a search string (and more specifically, a keyword phrase) for performing a search. In a preferred embodiment, the searches are executed as web searches to locate web pages and other types of documents on the World Wide Web. In other embodiments, the searches may additionally or alternatively be directed to another type of content repository, such as, for example, a database of published literature, a database or electronic catalog of products, or a database of online auctions. As depicted by block 16, the results of the search are incorporated into a search results page, which is returned to the user/web client that submitted the request.
  • Although not depicted in FIG. 1, a user may also perform a search by submitting a search string from a conventional search page, which may be retrieved by requesting a URL of the form www.domain_name or www.domain_name/.
  • If char_string starts with the predefined prefix, the URL is treated as a non-search-request URL. In this scenario (shown in block 18), char_string is treated as a further reference to a directory or object in this scenario, and not as a search string. For example, if a prefix of “−/” is used, the URL www.a9.com/−/index.htm would be treated as a request for the web page at this address, while the URL www.a9.com/index.htm would be treated as a request to search the World Wide Web for “index.htm.” Although only a single prefix is needed, two or more different prefixes (e.g., both “−/” and “/−”) may be recognized by the system as signifying the user's intent not to use char string as search string. The web page or other object referenced by the non-search-request URL is returned to the user/web client in block 20.
  • An important benefit of the method shown in FIG. 1 is that users can add their search strings to the web site's base URL without the addition of any special characters to indicate an intent to conduct a search. For instance, a user wishing to search the web for “NFL scores” can just request the URL “www.a9.com/NFL scores”. Another benefit is that users can use spaces to separate search terms, as is currently the convention for entering search strings on Internet search pages. An additional benefit is that the search string may appear at the very end of the URL.
  • As will be recognized, various modifications can be made to the method shown in FIG. 1. One such modification is to treat all URLs of the format www.domain_name/char_string as search request URLs. If this approach is used, a subdomain (e.g., www.pages.a9.com) may be provided for accessing other content of the web site. Another variation is to treat certain URLs that lack the full prefix as search requests if such URLs are otherwise invalid. For example, assuming “−/” is used as the only valid prefix, a request for www.a9.com//text may be treated as a request to search for “text” if the URL does not point to a valid subdirectory or object.
  • Another variation is to use a suffix, rather than a prefix, to identify non-search-request URLs. For instance, a URL of the format www.domain_name/char_string may be treated as a non-search-request URL if and only if char_string ends with a predefined suffix such as “/−” or “/−/”.
  • FIG. 2 illustrates components of a web site system 30 in which the invention may be embodied. The system includes a web server 32 that processes request messages received over the Internet from user computing devices 34, each of which runs a web browser or other web client program. The user computing devices 34 may include, for example, personal computers (PCs), personal digital assistants (PDAs), cellular telephones, and other types of devices that support web browsing.
  • The web server 32 includes, or runs in conjunction with, a local director component 36 that is responsible for decoding URL requests as depicted in FIG. 1 to evaluate whether each such request should be treated as a search request. In one embodiment, the local director 36 operates by analyzing each URL request according to a set of rules, and by passing URLs or URL parameters to specific physical servers or services based on the results of this analysis.
  • When a search request URL is received (e.g., www.a9.com/char string, where char_string does not start with the predefined prefix), the web server/local director passes the URL, or the search string portion of the URL, to a query server 40 for processing. The query server 40 applies the search string to an index of web pages and/or other content 42 to execute the search request. In one embodiment, this task is performed by treating each term in the search string, except for noise words such as “and,” “a,” and “the,” as a keyword. In another embodiment, the search string may include one or more groups of words (which may be demarcated using quotations), and may include Boolean operators (e.g., AND, OR and NOT) and/or other operators (e.g., +, −, parenthesis, and NEAR); if no quotations or operators are present, each term, excluding any noise words, may be treated as a keyword. The results of the search are returned to the web server 32, which incorporates some or all of the matching items into a search results page.
  • When a non-search-request URL is received, such as the URL www.a9.com/−/jobs.htm, the web server/local director preferably uses the URL to access a repository 46 in which content is arranged within a directory structure. This may involve passing the URL to a separate server or service responsible for retrieving or generating the content, depending upon the type of content being requested (e.g., static versus dynamic web page).
  • Although this invention has been described in terms of certain preferred embodiments and applications, other embodiments and applications that are apparent to those of ordinary skill in the art, including embodiments which do not provide all of the features and advantages set forth herein, are also within the scope of this invention. Accordingly, the scope of the present invention is defined only by the appended claims.

Claims (26)

1-22. (canceled)
23. A web site system, comprising:
a web server system capable of receiving and responding to URL requests from user computer devices; and
a query server capable of using search strings included in said URL requests to execute searches;
wherein the web server system is responsive to a request for a URL that includes a domain name, followed immediately by a single character, followed immediately by a search string, by causing the query server to use the search string to execute a search, and by returning a search results page with results of said search.
24. The web site system of claim 23, wherein the search string consists of a keyword or keyword phrase.
25. The web site system of claim 23, wherein the URL contains no special formatting for identifying the URL as a search request URL.
26. The web site system of claim 23, wherein the query server is configured to execute the search by applying the search string to an index of web pages and/or other content.
27. The web site system of claim 23, wherein the web server system is responsive to a request for a second URL that includes said domain name, followed immediately by said single character, followed immediately by a character string that includes a set of characters that identifies the second URL as a non-search-request URL, by returning a web page without invoking said query server.
28. The web site system of claim 27, wherein the set of characters consists of non-alphabetic characters.
29. A computer-readable medium having stored thereon a computer program which embodies a method that comprises the steps of:
receiving a URL request that specifies a URL, said URL including a domain name followed immediately by a single character followed immediately by a character string; and
responding to the URL request by causing the character string to be used in its entirety as a search string for executing a search, and by returning a search results page with results of said search.
30. The computer-readable medium of claim 29, wherein the URL does not contain any special characters or formatting for indicating the presence of a search string.
31. The computer-readable medium of claim 29, wherein the step of causing the character string to be used in its entirety as a search string is performed in response to determining that the character string does not include a predefined character sequence that identifies the URL as a non-search-request URL.
32. The computer-readable medium of claim 29, wherein the method further comprises:
receiving a second URL request that specifies a second URL, said second URL including said domain name, followed immediately by said single character, followed immediately by a second character string that includes a predefined character sequence, said predefined character sequence identifying the second URL as a non-search-request URL; and
responding to the second URL request by returning non-search-result content referenced by the second URL.
33. The computer-readable medium of claim 32, wherein the predefined character sequence consists of non-alphabetic characters.
34. A computer-implemented method of conducting a search, the method comprising the steps of:
generating a Uniform Resource Locator (URL) request message that specifies a URL, said URL including a domain name, followed immediately by a single character, followed immediately by a search string for conducting a search, said domain name corresponding to a web site system that implements a search engine; and
sending the URL request message on a computer network to the web site system to cause the web site system to execute a search using said search string and to return a search results page with results of the search.
35. The method of claim 34, wherein the single character is a forward slash.
36. The method of claim 34, wherein the URL does not contain any special formatting to indicate to the web site system that the URL contains a search string.
37. The method of claim 34, wherein the search string consists of a single keyword or a keyword phrase.
38. The method of claim 37, wherein the URL ends with said search string.
39. The method of claim 34, further comprising:
generating a second URL request message that specifies a second URL, said second URL including said domain name, and including a character sequence that identifies the second URL as a non-search-request URL; and
sending the second URL request message on the network to cause the web site system to return an object referenced by the second URL without executing a search.
40. The method of claim 39, wherein the character sequence consists of non-alphabetic characters.
41. The method of claim 39, wherein the second URL includes said domain name, followed immediately by a forward slash, followed immediately by said character sequence that identifies the second URL as a non-search-request URL.
42. The method of claim 39, wherein the second URL specifies a directory for retrieving the object from a directory structure.
43. A web site system, comprising:
a web server system capable of receiving and responding to URL requests from user computer devices; and
a query server capable of using search strings included in said URL requests to execute searches;
wherein the web server system is capable of processing a URL request by at least (1) determining whether the requested URL includes a set of characters that identifies the requested URL as a non-search-request URL, (2) when the requested URL is identified as a non-search-request URL, responding to the URL request without invoking the query server; and (3) when the requested URL is not identified as a non-search-request URL, causing the query server to execute a search using a search string included in the URL, and returning results of said search.
44. The web site system as in claim 43, wherein the set of characters consists of non-alphabetic characters.
45. The web site system as in claim 43, wherein the web server system checks for said set of characters immediately following a forward slash that immediately follows a domain name portion of the URL.
46. The web site system as in claim 43, wherein the web server system checks for said set of characters at the end of the requested URL.
47. The web site system as in claim 43, wherein the web server system is capable of responding to a requested URL that includes a domain name, followed immediately by a single character, followed immediately by a character string, by causing the query server to use the character string in its entirety to execute a search.
US11/842,011 2004-03-03 2007-08-20 Search engine system supporting inclusion of unformatted search string after domain name portion of url Abandoned US20080033945A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US11/842,011 US20080033945A1 (en) 2004-03-03 2007-08-20 Search engine system supporting inclusion of unformatted search string after domain name portion of url

Applications Claiming Priority (3)

Application Number Priority Date Filing Date Title
US79240504A 2004-03-03 2004-03-03
US10/924,521 US7287042B1 (en) 2004-03-03 2004-08-23 Search engine system supporting inclusion of unformatted search string after domain name portion of URL
US11/842,011 US20080033945A1 (en) 2004-03-03 2007-08-20 Search engine system supporting inclusion of unformatted search string after domain name portion of url

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US10/924,521 Continuation US7287042B1 (en) 2004-03-03 2004-08-23 Search engine system supporting inclusion of unformatted search string after domain name portion of URL

Publications (1)

Publication Number Publication Date
US20080033945A1 true US20080033945A1 (en) 2008-02-07

Family

ID=38607133

Family Applications (2)

Application Number Title Priority Date Filing Date
US10/924,521 Active 2025-06-19 US7287042B1 (en) 2004-03-03 2004-08-23 Search engine system supporting inclusion of unformatted search string after domain name portion of URL
US11/842,011 Abandoned US20080033945A1 (en) 2004-03-03 2007-08-20 Search engine system supporting inclusion of unformatted search string after domain name portion of url

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US10/924,521 Active 2025-06-19 US7287042B1 (en) 2004-03-03 2004-08-23 Search engine system supporting inclusion of unformatted search string after domain name portion of URL

Country Status (1)

Country Link
US (2) US7287042B1 (en)

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20130060757A1 (en) * 2011-06-10 2013-03-07 Lucas J. Myslinski Method of and system for utilizing fact checking results to generate search engine results
US8601359B1 (en) 2012-09-21 2013-12-03 Google Inc. Preventing autocorrect from modifying URLs
US8942974B1 (en) * 2011-03-04 2015-01-27 Amazon Technologies, Inc. Method and system for determining device settings at device initialization
KR101534819B1 (en) * 2014-05-09 2015-07-27 주식회사에어플러그 Method for providing different address information selectively on request from a mobile terminal and an apparatus for said method
US9454563B2 (en) 2011-06-10 2016-09-27 Linkedin Corporation Fact checking search results
US9483159B2 (en) 2012-12-12 2016-11-01 Linkedin Corporation Fact checking graphical user interface including fact checking icons
US9630090B2 (en) 2011-06-10 2017-04-25 Linkedin Corporation Game play fact checking

Families Citing this family (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9323843B2 (en) * 2010-04-07 2016-04-26 Yahoo! Inc. Method and system for performing bi-directional search
US8635205B1 (en) * 2010-06-18 2014-01-21 Google Inc. Displaying local site name information with search results
US20130268559A1 (en) * 2011-07-13 2013-10-10 Z124 Virtual file system remote search
FR2978637B1 (en) * 2011-07-29 2014-02-14 Sagemcom Energy & Telecom Sas METHOD FOR MANAGING ACCESS TO A SET OF RESOURCES DELIVERED BY AN ELECTRONIC DEVICE
US20130268703A1 (en) 2011-09-27 2013-10-10 Z124 Rules based hierarchical data virtualization
US9026522B2 (en) * 2012-10-09 2015-05-05 Verisign, Inc. Searchable web whois
US20190132378A1 (en) * 2017-10-31 2019-05-02 Oracle International Corporation Identifying an http resource using multi-variant http requests

Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6092100A (en) * 1997-11-21 2000-07-18 International Business Machines Corporation Method for intelligently resolving entry of an incorrect uniform resource locator (URL)
US6173406B1 (en) * 1997-07-15 2001-01-09 Microsoft Corporation Authentication systems, methods, and computer program products
US6321251B1 (en) * 1998-10-01 2001-11-20 Unisys Corporation Gateway for dynamically providing web site status information
US20020194181A1 (en) * 2001-03-26 2002-12-19 Wachtel David C. Method and apparatus for intelligent data assimilation
US20030061378A1 (en) * 2001-09-26 2003-03-27 Mazzitelli John Joseph Automatic request forwarding method and system
US20030069880A1 (en) * 2001-09-24 2003-04-10 Ask Jeeves, Inc. Natural language query processing
US6625594B1 (en) * 2000-01-18 2003-09-23 With1Click, Inc. System and method for searching a global communication system using a sub-root domain name agent
US6643641B1 (en) * 2000-04-27 2003-11-04 Russell Snyder Web search engine with graphic snapshots
US20030208472A1 (en) * 2000-04-11 2003-11-06 Pham Peter Manh Method and apparatus for transparent keyword-based hyperlink
US6760746B1 (en) * 1999-09-01 2004-07-06 Eric Schneider Method, product, and apparatus for processing a data request
US6763496B1 (en) * 1999-03-31 2004-07-13 Microsoft Corporation Method for promoting contextual information to display pages containing hyperlinks
US6772150B1 (en) * 1999-12-10 2004-08-03 Amazon.Com, Inc. Search query refinement using related search phrases
US20050033641A1 (en) * 2003-08-05 2005-02-10 Vikas Jha System, method and computer program product for presenting directed advertising to a user via a network
US6895430B1 (en) * 1999-10-01 2005-05-17 Eric Schneider Method and apparatus for integrating resolution services, registration services, and search services
US7058626B1 (en) * 1999-07-28 2006-06-06 International Business Machines Corporation Method and system for providing native language query service
US20070168886A1 (en) * 2003-04-17 2007-07-19 Microsoft Corporation Virtual Address Bar User Interface Control
US20070245027A1 (en) * 2006-03-31 2007-10-18 Avaya Technology Llc User session dependent URL masking
US7599922B1 (en) * 2002-11-27 2009-10-06 Microsoft Corporation System and method for federated searching

Patent Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6173406B1 (en) * 1997-07-15 2001-01-09 Microsoft Corporation Authentication systems, methods, and computer program products
US6092100A (en) * 1997-11-21 2000-07-18 International Business Machines Corporation Method for intelligently resolving entry of an incorrect uniform resource locator (URL)
US6321251B1 (en) * 1998-10-01 2001-11-20 Unisys Corporation Gateway for dynamically providing web site status information
US6763496B1 (en) * 1999-03-31 2004-07-13 Microsoft Corporation Method for promoting contextual information to display pages containing hyperlinks
US7058626B1 (en) * 1999-07-28 2006-06-06 International Business Machines Corporation Method and system for providing native language query service
US6760746B1 (en) * 1999-09-01 2004-07-06 Eric Schneider Method, product, and apparatus for processing a data request
US6895430B1 (en) * 1999-10-01 2005-05-17 Eric Schneider Method and apparatus for integrating resolution services, registration services, and search services
US6772150B1 (en) * 1999-12-10 2004-08-03 Amazon.Com, Inc. Search query refinement using related search phrases
US6625594B1 (en) * 2000-01-18 2003-09-23 With1Click, Inc. System and method for searching a global communication system using a sub-root domain name agent
US20030208472A1 (en) * 2000-04-11 2003-11-06 Pham Peter Manh Method and apparatus for transparent keyword-based hyperlink
US6643641B1 (en) * 2000-04-27 2003-11-04 Russell Snyder Web search engine with graphic snapshots
US20020194181A1 (en) * 2001-03-26 2002-12-19 Wachtel David C. Method and apparatus for intelligent data assimilation
US20030069880A1 (en) * 2001-09-24 2003-04-10 Ask Jeeves, Inc. Natural language query processing
US20030061378A1 (en) * 2001-09-26 2003-03-27 Mazzitelli John Joseph Automatic request forwarding method and system
US7599922B1 (en) * 2002-11-27 2009-10-06 Microsoft Corporation System and method for federated searching
US20070168886A1 (en) * 2003-04-17 2007-07-19 Microsoft Corporation Virtual Address Bar User Interface Control
US20050033641A1 (en) * 2003-08-05 2005-02-10 Vikas Jha System, method and computer program product for presenting directed advertising to a user via a network
US20070245027A1 (en) * 2006-03-31 2007-10-18 Avaya Technology Llc User session dependent URL masking

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8942974B1 (en) * 2011-03-04 2015-01-27 Amazon Technologies, Inc. Method and system for determining device settings at device initialization
US20130060757A1 (en) * 2011-06-10 2013-03-07 Lucas J. Myslinski Method of and system for utilizing fact checking results to generate search engine results
US9454563B2 (en) 2011-06-10 2016-09-27 Linkedin Corporation Fact checking search results
US9630090B2 (en) 2011-06-10 2017-04-25 Linkedin Corporation Game play fact checking
US9886471B2 (en) 2011-06-10 2018-02-06 Microsoft Technology Licensing, Llc Electronic message board fact checking
US8601359B1 (en) 2012-09-21 2013-12-03 Google Inc. Preventing autocorrect from modifying URLs
US9483159B2 (en) 2012-12-12 2016-11-01 Linkedin Corporation Fact checking graphical user interface including fact checking icons
KR101534819B1 (en) * 2014-05-09 2015-07-27 주식회사에어플러그 Method for providing different address information selectively on request from a mobile terminal and an apparatus for said method

Also Published As

Publication number Publication date
US7287042B1 (en) 2007-10-23

Similar Documents

Publication Publication Date Title
US20080033945A1 (en) Search engine system supporting inclusion of unformatted search string after domain name portion of url
US9081851B2 (en) Method and system for autocompletion using ranked results
Bharat et al. Mirror, mirror on the web: A study of host pairs with replicated content
US9436781B2 (en) Method and system for autocompletion for languages having ideographs and phonetic characters
US8332422B2 (en) Using text search engine for parametric search
US8255541B2 (en) Method and apparatus for utilizing user feedback to improve signifier mapping
US7398271B1 (en) Using network traffic logs for search enhancement
US7346604B1 (en) Method for ranking hypertext search results by analysis of hyperlinks from expert documents and keyword scope
US9367637B2 (en) System and method for searching a bookmark and tag database for relevant bookmarks
US8239367B1 (en) Bookmarks
US7293012B1 (en) Friendly URLs
US20010039563A1 (en) Two-level internet search service system
JP2007536643A (en) Web server for multi-version web documents
EP1428139A2 (en) System and method for extracting content for submission to a search engine
CA2409642A1 (en) Method and apparatus for identifying related searches in a database search system
US20040030780A1 (en) Automatic search responsive to an invalid request
US20100125781A1 (en) Page generation by keyword
Chau et al. Web searching in Chinese: A study of a search engine in Hong Kong
US20040107177A1 (en) Automated content filter and URL translation for dynamically generated web documents
KR20040013215A (en) Internal Natural Domain Service System with Local Name Servers for Flexible Top-Level Domains
US8713071B1 (en) Detecting mirrors on the web
JP2004110080A (en) Computer network connection method on internet by real name, and computer network system
WO1997049048A1 (en) Hypertext document retrieval system and method
US20050235197A1 (en) Efficient storage of XML in a directory
EP2662785A2 (en) A method and system for non-ephemeral search

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION