At the moment wrong URLs get me a
Not Foundpage. I am not sure who is generating this page, but I would guess it is Apache.
The requested URL /sd was not found on this server.
I have read that, in order to have a custom Not Found page, one needs to create, in the Atahualpa theme directory, a 404.php page with
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<h2 class="center">ARBITRARY TEXT</h2>
<p>MORE ARBITRARY TEXT</p>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
I did, however I still get the page above.
Note that I don't have an .htaccess file. Should I create one manually and edit it? I assumed WP would take care of this.