dongmi1663 2013-08-26 20:09
浏览 53
已采纳

301重定向不适用于查询字符串

I've .htaccess file which contains some 301 redirects. See the .htaccess code below. The third 301 redirect works fine. But the first and second redirects are producing 404 Page not found result. I've searched over SO and google and found some solutions. But none of them are working.

Following is my .htaccess file:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Redirect 301 /page.php?page=8  http://www.mydomain.com/about-us/

Redirect 301 /page.php?page=5  http://www.mydomain.com/contact-us/

Redirect 301 /testimonial.php http://www.mydomain.com/testimonials/

Please suggest.

  • 写回答

2条回答 默认 最新

  • dsndm82062 2013-08-29 06:46
    关注

    I've tried many was found here in SO and google.com; Nothing worked. Finally, I used a different approach. I've created page.php file and there I used following code:

    $page = $_GET['page'];
    switch ($page) {
    case 6:
    $link = 'http://webindream.com/about-us/';
    break;
    
    case 7:
    $link = 'http://webindream.com/contact-us';
    break;
    
    default: 
    $link = 'http://webindream.com/';
    
    
    }
    
    header("Location: $link", true, 301);
    

    Hope this will help someone to get rid of .htaccess and redirect smoothly.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部