模式重写为m.example.com/subfolder/index.php?user=xxx

时间:2014-11-18 19:50:22

标签: .htaccess mod-rewrite

我是新蜜蜂,我想重定向以下网址

m.site.com/subfolder/index.php?user=xxx

使用.htacess模式重写

到下面的搜索引擎frendly url

m.site.com/subfolder/xxx

请告诉我正确的方法

1 个答案:

答案 0 :(得分:0)

您可以在.htaccess文件的subfolder中使用(非常重要):

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{QUERY_STRING} ^user=(.+)$
RewriteRule ^ %1? [R=302,L]

RewriteRule ^(.*)$ index.php?user=$1 [L]

当测试工作良好时,更改R = 302,R = 301。