Wget and Wordpress, keep last trailing slash
I have a Wordpress based website that I scrap using wget. I have articles under the form
http://mydomain.com/2011/01/
once scraped becomes
http://mydomain.com/2011/01.html
I found out that when I enter
http://mydomain.com/2011/01/
in the navigator, URL gets changed to
http://mydomain.com/2011/01
which is why, I think, it is considered as a file when I call wget. I开发者_JS百科 would be very grateful if someone has some clue on how to address this.
I finally managed to get to the result I wanted, in this way: changing my permalink structure from
/%year%/%monthnum%/%postname%.html
to
/%year%/%monthnum%/%postname%/
精彩评论