Apache .htaccess重定向查询字符串

时间:2017-03-03 09:25:01

标签: apache .htaccess

我遇到了apache重定向问题。我需要将https://sitename.com/index.php?q=news重定向到https://sitename.com/news,我使用

sharedService.changeEmitted$.subscribe(
        text => {
          if (text.origin == 'login'){};
        });

但没有任何反应

1 个答案:

答案 0 :(得分:2)

尝试下面的规则,我假设你有处理程序。

RewriteEngine on
RewriteCond %{QUERY_STRING} ^q=(.*)$
RewriteRule ^ https://sitename.com/%1? [R=301,L]