我需要使用.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
任何人都能做到吗?非常感谢你的帮助!
答案 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]