.htaccess URL-Rewrite解决方案?

时间:2015-06-12 20:36:32

标签: apache .htaccess mod-rewrite url-rewriting rewrite

我需要使用.htaccess

重写我的网址

网址是

http://www.domain.com/subfolder/search-brands/index.php/?q=Garment Bags&brand=traveler apos s choice

我希望它像这样工作

http://www.domain.com/subfolder/search-brands/Garment Bags/traveler apos s choice

任何人都能做到吗?非常感谢你的帮助!

1 个答案:

答案 0 :(得分:1)

您可以在/subfolder/search-brands/.htaccess文件中使用此代码:

RewriteEngine On
RewriteBase /subfolder/search-brands/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)/?$ index.php?q=$1&brand=$2 [L,QSA]