【发布时间】:2012-07-07 03:22:11
【问题描述】:
我有一个带有 url http://mydomain.com/home/ 的 wp 页面。我想使用 htaccess 将其重定向到 http://mydomain.com/。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^home/$ index.php [L] #This is my attempt to redirect; not working.
RewriteRule . /index.php [L]
</IfModule>
【问题讨论】: