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