1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Please help rewrite my URL in .htaccess

Discussion in 'Apache' started by neilfurry, Mar 9, 2018.

  1. #1
    hi Mate,

    I need help re writing my url.

    here is the original url:

    http://mysite.com/project/storefront/?p=payment

    I want it to make it so that visitors will be able to access the page via

    http://mysite.com/project/storefront/payment

    How can i do this using .htaccess

    Thank you
     
    neilfurry, Mar 9, 2018 IP
  2. RoseHosting

    RoseHosting Well-Known Member

    Messages:
    230
    Likes Received:
    11
    Best Answers:
    11
    Trophy Points:
    138
    #2
    You can try with the following .htaccess rules:

    RewriteCond %{QUERY_STRING} (^|&)p=payment($|&)
    RewriteRule ^project/storefront/$ /project/storefront/payment?&%{QUERY_STRING}
    Code (markup):
     
    RoseHosting, Mar 11, 2018 IP