我想要以锡为开头的一切
http://www.laurapeckauskiene.com/dt_gallery_category/
被改写为
http://www.laurapeckauskiene.com/
(dt_gallery_category是存档)
所以我有htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
Options FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^dt\_gallery\_category.*$ http://www.laurapeckauskiene.com/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
但请求仍未按要求重定向。
答案 0 :(得分:0)
更改
RewriteRule ^dt\_gallery\_category.*$ http://www.laurapeckauskiene.com/
到
RewriteRule ^$ /dt_gallery_category/ [L]
您不需要包含完整的网址,因为它们位于同一个网域上。