【问题标题】:Clean URL htaccess清理 URL htaccess
【发布时间】:2013-09-06 23:28:30
【问题描述】:

我想改变我的网站链接

http://www.example.com/index.php?a=page&b=about

到那个

http://www.egysocial.tk/about

我想将旧 URL 重定向到新 URL。 谢谢

【问题讨论】:

    标签: php .htaccess clean-urls


    【解决方案1】:

    试试:

    RewriteEngine On
    
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\?a=page&b=([^&\ ]+)
    RewriteRule ^ /%1? [L,R=301]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php?a=page&b=$1 [L]
    

    【讨论】:

    猜你喜欢
    • 2017-02-06
    • 1970-01-01
    • 2014-09-22
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多