If you are using a Linux hosting, you can still use .htaccess to use same URLs as Wordpress if you don't have too many pages.
Wordpress removes stop words from the URL so you'd have to manually edit the URLs for each page.
you go to permalinks and append .html at end. of page naems.So there is no other easier way to do it?
If I do that, does the links to version without .html would still work?
http://www.inmotionhosting.com/support/website/htaccess/remove-file-extensions
Really curious why you would want to do that?
Sorry, if I confused - I have wordpress site, do not want to use it anymore, want to create new html only site for the same url as before, but keeping all the links.
Meaning if on wordpress url was ''mysite.com/link/post''
on html creating the same ''mysite.com/link/post''
##Remove .html
RewriteRule ^link/([a-zA-Z0-9\-_]+)$ http://www.domain.com/link/$1/ [L,R=301,NC]
RewriteRule ^link/([a-zA-Z0-9\-_]+)/$ link/$1.html [L,QSA,NC]
It's as easy as remaking all the pages in html. If you delete wp everything will break otherwiseSorry, if I confused - I have wordpress site, do not want to use it anymore, want to create new html only site for the same url as before, but keeping all the links.
Meaning if on wordpress url was ''mysite.com/link/post''
on html creating the same ''mysite.com/link/post''