【问题标题】:I need to redirect to a page that matches the type with HTACCESS我需要重定向到与 HTACCESS 类型匹配的页面
【发布时间】:2013-01-08 18:22:45
【问题描述】:

如果您访问我的网站:

http://thaflynation.tumblr.com/post/41322801418/another-dope-track-by-tnght-r-u-ready/

它会将您重定向到:

http://thaflynation.com

但是我需要它重定向到:

http://thaflynation.com/audio/41322801418/another-dope-track-by-tnght-r-u-ready/

所以我需要获得 http 推荐:http://thaflynation.tumblr.com/post/POSTID/POST_SLUG 并将该推荐重定向到:http://thaflynation.com/audio/POSTID/POST_SLUG

如何使用 HTACCESS 做到这一点?请帮忙!

【问题讨论】:

标签: php .htaccess http-referer http-redirect redirect


【解决方案1】:

如果您想用audio 替换post,您必须在发布后捕获部分并将其附加到音频中

RewriteEngine On
RewriteRule ^/?post/(.*) /audio/$1

如果你想有一个外部重定向

RewriteEngine On
RewriteRule ^/?post/(.*) http://thaflynation.com/audio/$1 [R,L]

【讨论】:

  • 我用 php 解决了这个问题。谢谢!
猜你喜欢
  • 2013-02-27
  • 1970-01-01
  • 1970-01-01
  • 2016-03-29
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2022-01-22
  • 2016-03-25
相关资源
最近更新 更多