简体   繁体   中英

.htaccess rewrite GET parameter

I would like to change my URL from site.com/functions/analyze.php?password=test to site.com/functions/analyze/password/test . I am using a .htaccess rewrite rule in attempt to achieve this.

However, upon browsing to my /functions/analyze/password/test I can see that the GET parameter being passed is test.php/password/test and not test .

Where am I going wrong?

# Enable editing.
Options -MultiViews
RewriteEngine On

# Hide PHP extenstion.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php

# Reroutes for GET.
RewriteRule ^(functions/analyze)/(password)/(.+)$ $1.php?$2=$3 [L,NC,QSA]

You can have this rule in root .htaccess with MultiViews (content negotiation) turned off:

Options -MultiViews
RewriteEngine On

RewriteRule ^(functions/analyze)/(password)/(.+)$ $1.php?$2=$3 [L,NC,QSA]

or you can try

 RewriteEngine On RewriteRule ^functions/analyze/password/([A-Za-z0-9-]+)/?$ /functions/analyze.php?password=$1 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM