Lock down REST server

I have an project that will only be using REST api.
I therefore would like to avoid anybody accessing the server using the standard list/add/edit pages and have found, that I can delete the list/add/edit pages from the root of the server and the api functions seem to work just fine.

But is this the best way of doing this?

tia

/Poul

Currently, yes. The best way to avoid user accessing the unwanted feature is by removing all the related files from your web server.

OK.

/Poul