【发布时间】:2014-02-15 06:56:48
【问题描述】:
我想更改网址 http://example.com/index.php?city=newyork&cat=apple&q=ipad 到 http://example.com/newyork?cat=apple&q=ipad
请帮帮我。
我有 .htaccess
DirectoryIndex index.php
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/index.php
RewriteRule ^/([a-z]+)(?:$|\?(?:.+)) /index.php?city=$1 [NC,L,B,QSA,NE]
但它不起作用
【问题讨论】:
标签: php regex apache .htaccess mod-rewrite