if you’ve created post and published them already then when you change the permalinks structure they’re no longer going to have the same URI.
if you created a post with the URI of mysite.com/category/post-name and then change your permalinks to mysite.com/12/145 then they’re not going to match up…
so, what can Ido then, shall I delete all the posts and re post them again?
is there a specific need for numeric permalinks on your site? they’re not very human/SEO Google friendly.
reset the permalinks back to the default setting to first of all see if that gets you access to the posts again. clear the browser cache too before you refresh your site to check.
we’ll take it from there if that works!
After I change it back to default setting, everything is back, include the posts I have posted after I changed the permalinks.
Even I clean the cache.
… confused! Can anyone help ?
I know, after I edit the post, I saw the permalink has been udated. What I mean is the page is NOT there. So I think this is something related to server setting. My server runing on ngunix, not apache.
I have include followings on the setting,
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
Can someone give me some hints?