Results 1 to 5 of 5

Hybrid View

  1. #1
    Join Date
    Oct 2015
    Location
    Canton
    Posts
    2
    Plugin Contributions
    0

    Default Custom Advanced Search Page URL

    Hi everyone

    It can be rewrite for search page url???

    Now it is
    http://www.mydomian.com/index.php?ma...ion=1&keyword=fashion+clothing&x=0&y=0

    search keywords is "fashion clothing"

    search page url can be rewrited below???

    http://www.mydomian.com/cheap/fashion-clothing.html
    or http://www.mydomian.com/cheap/fashion-clothing
    http://www.mydomian.com/fashion-clothing/cheap



    thanks

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Custom Advanced Search Page URL

    First of all - Welcome to the forum

    Now please provide the information that is in posting tips at the top of the page when replying

  3. #3
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Custom Advanced Search Page URL

    The easiest way to do this is through a .htaccess rewrite by adding a .htaccess to the root of your store (ZC doesn't come with/need one) that provides the redirect for when the desired path is provided by a customer.

    Do be careful when using such rewrites as they can eventually lead to cyclic reference and inability to access the site if incorrectly sequenced and added. Used properly they can offer the type of functionality desired.

    As a side note, there are other tools as well to generate/manage friendly/readable URIs, but for the one action described/requested, that additional software does not appear necessary.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #4
    Join Date
    Oct 2015
    Location
    Canton
    Posts
    2
    Plugin Contributions
    0

    Default Re: Custom Advanced Search Page URL

    i think there is not any problem, i want to more pages which can be indexed by google/yahoo including search pages.

    i have custom meta (title,keywords,description) for search pages.

    thanks

  5. #5
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Custom Advanced Search Page URL

    So one issue I believe would be had with implementing this is that I think the search pages are actually not indexed, so even by providing a user readable link as described above will still not make such items appear in search engine statistics... Not without other modifications to address such a possibility. But, to specifically provide the above result, would need to create .htaccess in your store's root directory or above it. (Anything placed in a .htaccess before the current folder tends to apply to everything below that folder so again, be careful here.)

    In it need at least one instance of RewriteEngine on and add (iin an appropriate order) the content shown below the RewriteEngine on statement:
    Code:
    RewriteEngine on
    
    RewriteCond %{REQUEST_URI} ^/cheap/fashion-clothing [NC]
    RewriteRule ^(.*) http://www.mydomain.com/index.php?main_page=advanced_search_result&search_in_description=1&keyword=fashion+clothing&x=0&y=0
    Additional tags may be necessary, additional RewriteCond may be necessary depending on the websites offered from this point and other rules needed to be processed in the .htaccess... Further, search engines won't even know this link exists if it is not used somewhere...
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 

Similar Threads

  1. v154 Advanced search result display (custom field)
    By chadlly2003 in forum General Questions
    Replies: 12
    Last Post: 5 Jun 2016, 09:50 PM
  2. v151 Need to add custom form and advanced search to a new page
    By webmiss in forum General Questions
    Replies: 8
    Last Post: 20 Mar 2013, 01:32 PM
  3. v151 Custom search and custom search URL.
    By RFree190 in forum General Questions
    Replies: 1
    Last Post: 5 Feb 2013, 02:25 PM
  4. v139h Custom Advanced Search Fields
    By divinelighting in forum General Questions
    Replies: 0
    Last Post: 27 Jul 2012, 08:22 PM
  5. Custom Field in Advanced search
    By SteveDuncan in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 9 Apr 2010, 02:14 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg