【发布时间】:2016-08-31 09:27:16
【问题描述】:
我必须在 .htaccess 中重定向网址:
原文:/mobile/blog/
重定向:/blog/
我试过了:RewriteCond %{REQUEST_URI} ^/mobile/blog/RewriteRule ^mobile/blog/(.*)$ /blog/$1 [R=301,L]
没有成功。
我也有这些需要在 .htaccess 中的 nginx 重定向。
rewrite ^/items/(.+)/(.*) /search/$2 permanent;rewrite ^/items/(.*) /search/$1 permanent;rewrite ^/topic/onlyon $scheme://$host/tags/onlyon permanent;
感谢任何帮助和文档。
【问题讨论】:
-
为什么要从 nginx 切换到 apache?
-
这超出了我的工资等级。
标签: apache .htaccess redirect nginx drupal-7