Scripts external to WordPress cause 404 errors

My money would be on the .htaccess of your root directory is trying to route the /docuwiki request through WordPress, which is why it is failing. Your .htaccess file should look something like this: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>

How to fix 404 page error on theme

So I think you’re problem is the quotes in the href inside your function. Try escaping them like this and it should be fixed. <p><?php _e(“Sorry but, you are looking for something that isn’t here. <br /><br /> Looking for more web developer jobs, please visit our sister site: <a href=\”http://LAMPjobsLA.com\”>LAMPjobsLA.com</a>”, ‘cleanhome’) ;?></p>

Adding Theme File for Non-WordPress Content

Just remove pagename=event& and reset your rewrite rules… $newRule = array(‘event/(.+)’ => ‘index.php?eventid=’.$wp_rewrite->preg_index(1)); *template_include* is a filter NOT an action! add_filter(‘template_include’, array($EventpageCode, ‘template_redirect_intercept’)); You can use *wp_title* function or filter to modify your page title.