Maybe it's just not possible to do a 410 for /news/ while still having the remaining pages function correctly.
phranque
11:29 pm on Aug 22, 2011 (gmt 0)
i don't see where you are sending a 410 Gone response to the directory url request.
jk3210
12:32 am on Aug 23, 2011 (gmt 0)
I think I have it now. I initially tried this, first in the root htaccess, then in the /news/ htaccess...
Redirect 410 /news/ Redirect 410 /news
...but that disabled everything /news/ and beyond.
I'm now using a Wordpress Redirection plugin that is returning a 410 for /news/, but allowing all other pages to work fine, which is what I was looking for.
That's the last time I'll ever mix Wordpress with a static site.
Thanks all.
phranque
4:43 am on Aug 23, 2011 (gmt 0)
it's is likely that your problem was caused by mixing mod_alias directives (Redirect) with mod_rewrite directives (RewriteRule). you can further complicate and confuse things by having rewrite/redirect directives in your root directory .htaccess and a subdirectory .htaccess.