使用.htaccess和php进行URL重定向问题

时间:2016-04-10 06:16:25

标签: php apache .htaccess redirect mod-rewrite

我正在尝试使用.htaccess重写网址。我尝试了几种解决方案,以达到所需的网址,但无法弄清楚。任何人都可以帮忙。

原始网址

http://localhost/view_retailer.php?id=<storename>

使用.htaccess重写网址

http://localhost/view_retailer?id=<storename>

所需网址

http://localhost/store/<storename>

1 个答案:

答案 0 :(得分:0)

您可以在root .htaccess中使用这两个规则:

RewriteEngine On

# external redirect from actual URL to pretty one
RewriteCond %{THE_REQUEST} /view_retailer(?:\.php)?\?id=([^\s&]+) [NC]
RewriteRule ^ /store/%1? [R=302,L,NE]

# internal forward from pretty URL to actual one
RewriteRule ^store/([^/]+)/?$ view_retailer.php?id=$1 [L,QSA,NC]