【问题标题】:want to redirect http://zbc.in/example/1234/abcde to http://zbc.in/m/example/1234/abcde想将 http://zbc.in/example/1234/abcde 重定向到 http://zbc.in/m/example/1234/abcde
【发布时间】:2015-11-20 11:16:06
【问题描述】:

想要将“http://zbc.in/example/1234/abcde”重定向到“http://zbc.in/m/example/1234/abcde”。我没有得到任何解决方案。我应该在 htaccess 中写什么?

【问题讨论】:

    标签: php .htaccess redirect


    【解决方案1】:

    您需要更具体地说明重定向时必须遵守哪些规则。

    我猜:

    RewriteEngine on
    RewriteCond %{REQUEST_URI} !^/m/
    RewriteRule ^(.*)$ /m/$1 [L]
    

    【讨论】:

    • 尝试在规则末尾使用 [301,L] 而不是 [L]
    猜你喜欢
    • 1970-01-01
    • 2017-11-06
    • 1970-01-01
    • 1970-01-01
    • 2012-07-26
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-11-13
    相关资源
    最近更新 更多