<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/apache/tags/wordpress</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 22 May 2013 13:46:07 GMT</pubDate>
<item>
<title>(Apache) .htaccess for wordpress network @wpengine - adds trailing slash to 404 pages - lucasoptura</title>
<link>http://snipplr.com/view/69037/htaccess-for-wordpress-network-wpengine--adds-trailing-slash-to-404-pages/</link>
<description><![CDATA[ <p>In my WP networks, I use a custom 404 page and plugin to answer calls asking for user information from a custom api. The API requires a URL format like this:
domain.com/username/
However, users don't ever type a trailing slash, nor should they, so this allows for a trailing slash anywhere but inside admin, except where it is needed in admin...</p> ]]></description>
<pubDate>Sun, 09 Dec 2012 08:10:39 GMT</pubDate>
<guid>http://snipplr.com/view/69037/htaccess-for-wordpress-network-wpengine--adds-trailing-slash-to-404-pages/</guid>
</item>
<item>
<title>(Apache) Reduce spam on your WordPress blog by using .htaccess - no4h</title>
<link>http://snipplr.com/view/61974/reduce-spam-on-your-wordpress-blog-by-using-htaccess/</link>
<description><![CDATA[ <p>Reduce spam on WP installations (comment spam); this snippet does not look for https referers.</p> ]]></description>
<pubDate>Mon, 19 Dec 2011 02:45:25 GMT</pubDate>
<guid>http://snipplr.com/view/61974/reduce-spam-on-your-wordpress-blog-by-using-htaccess/</guid>
</item>
<item>
<title>(Apache) How to: Protect your WordPress blog from hotlinking - no4h</title>
<link>http://snipplr.com/view/61973/how-to-protect-your-wordpress-blog-from-hotlinking/</link>
<description><![CDATA[ <p>FWIW</p> ]]></description>
<pubDate>Mon, 19 Dec 2011 02:30:21 GMT</pubDate>
<guid>http://snipplr.com/view/61973/how-to-protect-your-wordpress-blog-from-hotlinking/</guid>
</item>
<item>
<title>(Apache) Stop directory index browsing - f6design</title>
<link>http://snipplr.com/view/61282/stop-directory-index-browsing/</link>
<description><![CDATA[ <p>This snippet will stop people from snooping in your Apache directories. This is useful if you have directories containing files, but no index HTML/PHP document.</p> ]]></description>
<pubDate>Tue, 29 Nov 2011 08:33:03 GMT</pubDate>
<guid>http://snipplr.com/view/61282/stop-directory-index-browsing/</guid>
</item>
<item>
<title>(Apache) Setting PHP Memory Limit in .htaccess - Huskie</title>
<link>http://snipplr.com/view/57652/setting-php-memory-limit-in-htaccess/</link>
<description><![CDATA[ <p>Useful for WordPress installations that need more than 32M of memory</p> ]]></description>
<pubDate>Sat, 06 Aug 2011 00:09:55 GMT</pubDate>
<guid>http://snipplr.com/view/57652/setting-php-memory-limit-in-htaccess/</guid>
</item>
<item>
<title>(Apache) Exclude Upload Scripts from HTTP Authentication - dertimbo</title>
<link>http://snipplr.com/view/50388/exclude-upload-scripts-from-http-authentication/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 09 Mar 2011 20:28:32 GMT</pubDate>
<guid>http://snipplr.com/view/50388/exclude-upload-scripts-from-http-authentication/</guid>
</item>
<item>
<title>(Apache) More efficient RewriteRule for Wordpress - sdxxx</title>
<link>http://snipplr.com/view/45273/more-efficient-rewriterule-for-wordpress/</link>
<description><![CDATA[ <p>Improving WordPress performance with changes to .htaccess</p> ]]></description>
<pubDate>Sat, 04 Dec 2010 13:43:19 GMT</pubDate>
<guid>http://snipplr.com/view/45273/more-efficient-rewriterule-for-wordpress/</guid>
</item>
<item>
<title>(Apache) Leverage Browser Caching in WordPress via .htaccess - sdxxx</title>
<link>http://snipplr.com/view/45272/leverage-browser-caching-in-wordpress-via-htaccess/</link>
<description><![CDATA[ <p>"We should always be looking for ways to improve the functionality of our blogs. One of the easiest ways to improve our blog functionality and speed is to leverage browser caching."</p> ]]></description>
<pubDate>Sat, 04 Dec 2010 13:41:13 GMT</pubDate>
<guid>http://snipplr.com/view/45272/leverage-browser-caching-in-wordpress-via-htaccess/</guid>
</item>
<item>
<title>(Apache) htaccess for Wordpress Multi-site - j4kp07</title>
<link>http://snipplr.com/view/36969/htaccess-for-wordpress-multisite/</link>
<description><![CDATA[ <p>Currently, multisite is easiest to setup under the following conditions: 1) WordPress for main site installed in the root directory 2) Each additional network site is created in its own subdirectory</p> ]]></description>
<pubDate>Fri, 09 Jul 2010 01:27:50 GMT</pubDate>
<guid>http://snipplr.com/view/36969/htaccess-for-wordpress-multisite/</guid>
</item>
<item>
<title>(Apache) WordPress - .htaccess - protect config file - josephknight</title>
<link>http://snipplr.com/view/36697/wordpress--htaccess--protect-config-file/</link>
<description><![CDATA[ <p>The problem
As a WordPress user, you probably know how important the wp-config.php file is. This file contains all of the information required to access your precious database: username, password, server name and so on. Protecting the wp-config.php file is critical, so how about exploiting the power of Apache to this end?

Code explanation
.htaccess files are powerful and one of the best tools to prevent unwanted access to your files. In this code, we have simply created a rule that prevents any access to the wp-admin.php file, thus ensuring that no evil bots can access it.

Source

    * 10 Easy Ways to Secure Your WordPress Blog</p> ]]></description>
<pubDate>Mon, 05 Jul 2010 16:26:18 GMT</pubDate>
<guid>http://snipplr.com/view/36697/wordpress--htaccess--protect-config-file/</guid>
</item>
<item>
<title>(Apache) Secure wp-config.php - jeromegamez</title>
<link>http://snipplr.com/view/36600/secure-wpconfigphp/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 02 Jul 2010 12:19:28 GMT</pubDate>
<guid>http://snipplr.com/view/36600/secure-wpconfigphp/</guid>
</item>
<item>
<title>(Apache) Wordpress much more efficient HTACCESS/mod_rewrite - LuckyShot</title>
<link>http://snipplr.com/view/33656/wordpress-much-more-efficient-htaccessmodrewrite/</link>
<description><![CDATA[ <p>A member of Wordpress community says: I placed this code on my site and it instantly cut my page load times from 4-8 seconds per page (and typically on the high end of that) down to 1-3 seconds per page and EVERYTHING on my site works as it did before. I have yet to find a problem with anything related to the change. It was a HUGE WordPress Performance improvement... and it didn't require me adding yet another plugin like WP Cache or WP Super Cache and inheriting the various problems that using those entail.</p> ]]></description>
<pubDate>Fri, 30 Apr 2010 09:06:46 GMT</pubDate>
<guid>http://snipplr.com/view/33656/wordpress-much-more-efficient-htaccessmodrewrite/</guid>
</item>
<item>
<title>(Apache) Hardening Wordpress - occam</title>
<link>http://snipplr.com/view/17927/hardening-wordpress/</link>
<description><![CDATA[ <p>In addition to the recommendations on the Wordpress Website.

Limit the amount of PHP files that a writable by Apache. The directory's and files that need to be writable, do not always need to be executed by PHP directly.

This makes it a bit harder for the attacker to upload and execute any PHP commands.</p> ]]></description>
<pubDate>Wed, 05 Aug 2009 13:32:26 GMT</pubDate>
<guid>http://snipplr.com/view/17927/hardening-wordpress/</guid>
</item>
<item>
<title>(Apache) WordPress .htaccess - bpj1966</title>
<link>http://snipplr.com/view/6538/wordpress-htaccess/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 01 Jun 2008 19:18:48 GMT</pubDate>
<guid>http://snipplr.com/view/6538/wordpress-htaccess/</guid>
</item>
<item>
<title>(Apache) Secure your wp-includes folder - m00min</title>
<link>http://snipplr.com/view/4873/secure-your-wpincludes-folder/</link>
<description><![CDATA[ <p>After installing WordPress an .htaccess file with the following code needs to be added to the wp-includes folder.</p> ]]></description>
<pubDate>Fri, 01 Feb 2008 11:56:07 GMT</pubDate>
<guid>http://snipplr.com/view/4873/secure-your-wpincludes-folder/</guid>
</item>
<item>
<title>(Apache) Pretty permalinks on for Wordpress running on Apache - m00min</title>
<link>http://snipplr.com/view/4863/pretty-permalinks-on-for-wordpress-running-on-apache/</link>
<description><![CDATA[ <p>Add this to an .htaccess file.</p> ]]></description>
<pubDate>Thu, 31 Jan 2008 17:13:16 GMT</pubDate>
<guid>http://snipplr.com/view/4863/pretty-permalinks-on-for-wordpress-running-on-apache/</guid>
</item>
</channel>
</rss>