x = x++;
is equivalent to
int tmp = x;
x++;
x = tmp;
x = x++;
is equivalent to
int tmp = x;
x++;
x = tmp;
The requested URL was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.