我有htaccess
处理重定向知道我想要打api就像我有这样的网址
http://localhost:8080/test/network/country/category/subcategory/fixedvalue
我有detail, category ,codes
这样的固定值,但只有detail
我需要id
作为参数
示例
http://localhost:8080/test/Airtel/UK/Prepaid/5G/Detail
下面是我要从htacess文件生成的重定向网址
如果固定值为detail
http://localhost:8080/h1.php?network=Airtel&country=UK&category=Prepaid&subcategory=5G&Detail= remain portion of url except .html
在细节未修复的其他情况下我不需要id
在第5个参数之后有参数剩余部分的url,所以url将
http://localhost:8080/h1.php?network=Airtel&country=UK&category=Prepaid&subcategory=5G
这是一个重定向到5.php
文件的代码,但我不想重定向,我想要一个具有参数的特定网址
RewriteEngine On
RewriteRule ^([\w-]+)/([\w-]+)/([\w-]+)/([\w-]+)/([\w-]+)/?$ 5.php?1=$1&2=$2&3=$3&4=$4&5=$5 [QSA,L]
简单来自
www.cloth.com/nike
至www.cloth.com?name=nike