网站使用.htaccess文件在url重写中加载更多时间

时间:2013-07-26 12:35:29

标签: php apache .htaccess url-rewriting

您好我是url重写帮助的新手。

其实我想从以下地址重写我的网址:

http://abcd.com/merchant.php?store=2&area=323&storename=Vendor-2

http://abcd.com/Vendor-2

但它不起作用。当我点击href目标时,它正在加载。以下是我的.htaccess文件

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [L,QSA]

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s(.*)/index\.php [NC]
RewriteRule ^ /%1 [R=301,L]

RewriteRule ^([^/]*)\.html$ /merchant\.php?store=1&area=132&storename=$1 [L]

上面的文件是我的.htaccess文件,但它无效。

有人可以给我一个建议吗?

1 个答案:

答案 0 :(得分:0)

# This should match when storename contains [a-zA-Z0-9_-]
RewriteCond %{QUERY_STRING} storename=([\w-]+)
RewriteRule merchant.php /%1 [R=301,L]