我需要根据用户代理重定向用户。
目前我的 WordPress 网站使用基于 ajax 的主题。所以 URL 格式是
http://www.example.com/#!/my_first_post/
我当前的 htaccess 代码如下。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
这是我需要帮助的事情:
if (user agent == "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" ){
redirect the url without hashes
ex:http://www.example.com/my_first_post/
}
我需要使用 htaccess 来做到这一点。