【发布时间】:2016-07-29 19:12:38
【问题描述】:
我想将所有流量重定向到主页,但目录为 /google/ 的任何内容除外。我想保留默认的 Wordpress 重写,以便删除 index.php。
# Need to leave certain files alone
RewriteCond %{REQUEST_URI} !.(gif|jpeg|png|css|js|woff|ttf|eot|svg|otf|woff2|jpg)$
# No redirects on home page (obviously)
http://example.com
# Everything else should redirect back to http://example.com (home)
http://example.com/*
# All variations of the following should NOT redirect
http://example.com/google/
http://example.com/google
http://example.com/google/index.php
谢谢!
【问题讨论】:
标签: wordpress apache .htaccess