如何使用htacess php将更改URL格式更改为POST?

时间:2017-01-13 12:37:34

标签: php .htaccess redirect mod-rewrite

我有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/nikewww.cloth.com?name=nike

0 个答案:

没有答案