Htaccess使用子目录中的参数重写到根文件夹

时间:2016-07-12 12:51:49

标签: .htaccess

我的网址中有参数。

 https://www.example.com/subdirectory/reset-password/123/123 

我希望它是https://www.example.com/reset-password/123/123

其中第一个123是第一个参数,第二个参数是123

我正在为以下链接制定规则: 我希望它是

https://www.example.com/subdirectory/reset-password?p=123&q=123

I want it to be `https://www.example.com/reset-password/123/123` 

我使用以下链接作为参考 Hide folder name from particular URL using .htaccess

1 个答案:

答案 0 :(得分:2)

使用此:

18 to 21 years

它将为您提供以下网址:

RewriteEngine On RewriteRule ^reset-password/([^/]*)/([^/]*)$ /subdirectory/reset-password?p=$1&q=$2 [L]