<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Who Else Wants to Hide Their WordPress Folder?</title>
	<atom:link href="http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/</link>
	<description>Stuff only Michi cares to read</description>
	<lastBuildDate>Sun, 22 Jan 2012 10:48:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Freshcode</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-16069</link>
		<dc:creator>Freshcode</dc:creator>
		<pubDate>Tue, 11 Oct 2011 10:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-16069</guid>
		<description>Had the same problem. Try this (thanks to Lazeg):

    RewriteEngine On
    RewriteBase /
    # wp-admin aanpassen
    RewriteCond %{REQUEST_URI} wp-admin/
    RewriteCond %{REQUEST_FILENAME} !load-styles.php
    RewriteCond %{QUERY_STRING} !YOURSECRETWORD
    RewriteRule .*.php [F,L]
    RewriteCond %{QUERY_STRING} !YOURSECRETWORD
    RewriteRule ^YOURSECRETROOM/(.*) wp-admin/$1?%{QUERY_STRING}&amp;YOURSECRETWORD [L]
    # wp-admin aanpassen
    RewriteRule ^index.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]</description>
		<content:encoded><![CDATA[<p>Had the same problem. Try this (thanks to Lazeg):</p>
<p>    RewriteEngine On<br />
    RewriteBase /<br />
    # wp-admin aanpassen<br />
    RewriteCond %{REQUEST_URI} wp-admin/<br />
    RewriteCond %{REQUEST_FILENAME} !load-styles.php<br />
    RewriteCond %{QUERY_STRING} !YOURSECRETWORD<br />
    RewriteRule .*.php [F,L]<br />
    RewriteCond %{QUERY_STRING} !YOURSECRETWORD<br />
    RewriteRule ^YOURSECRETROOM/(.*) wp-admin/$1?%{QUERY_STRING}&amp;YOURSECRETWORD [L]<br />
    # wp-admin aanpassen<br />
    RewriteRule ^index.php$ &#8211; [L]<br />
    RewriteCond %{REQUEST_FILENAME} !-f<br />
    RewriteCond %{REQUEST_FILENAME} !-d<br />
    RewriteRule . /index.php [L]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gustavo</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-16067</link>
		<dc:creator>Gustavo</dc:creator>
		<pubDate>Wed, 05 Oct 2011 02:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-16067</guid>
		<description>I&#039;m using WordPress 3.2.1. and everything is ok with this solution but the &quot;themes page&quot; seems not loading the css files.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using WordPress 3.2.1. and everything is ok with this solution but the &#8220;themes page&#8221; seems not loading the css files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francis Rosário</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-16064</link>
		<dc:creator>Francis Rosário</dc:creator>
		<pubDate>Wed, 31 Aug 2011 19:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-16064</guid>
		<description>Someone have a NginX version of this  .htaccess?</description>
		<content:encoded><![CDATA[<p>Someone have a NginX version of this  .htaccess?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sailen Debnath</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-16022</link>
		<dc:creator>Sailen Debnath</dc:creator>
		<pubDate>Tue, 29 Mar 2011 11:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-16022</guid>
		<description>Hi i am using this code but it not work nothing i can access.the code is
====
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} wp-admin/
RewriteCond %{QUERY_STRING} !blablabla
RewriteRule .*.php [F,L]
RewriteCond %{QUERY_STRING} !kaboom
RewriteRule ^hidden/(.*)domen/ wp-admin/$1?%{QUERY_STRING}&amp;blablabla [L]
# BEGIN WordPress
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . domen/index.php [L]
# END WordPress
====
can you help me why it not work... </description>
		<content:encoded><![CDATA[<p>Hi i am using this code but it not work nothing i can access.the code is<br />
====<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_URI} wp-admin/<br />
RewriteCond %{QUERY_STRING} !blablabla<br />
RewriteRule .*.php [F,L]<br />
RewriteCond %{QUERY_STRING} !kaboom<br />
RewriteRule ^hidden/(.*)domen/ wp-admin/$1?%{QUERY_STRING}&amp;blablabla [L]<br />
# BEGIN WordPress<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . domen/index.php [L]<br />
# END WordPress<br />
====<br />
can you help me why it not work&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sailen Debnath</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-16021</link>
		<dc:creator>Sailen Debnath</dc:creator>
		<pubDate>Tue, 29 Mar 2011 11:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-16021</guid>
		<description>Hi i am using this code but it not work nothing i can access.the code is
====
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} wp-admin/
RewriteCond %{QUERY_STRING} !blablabla
RewriteRule .*.php [F,L]
RewriteCond %{QUERY_STRING} !kaboom
RewriteRule ^hidden/(.*)domen/ wp-admin/$1?%{QUERY_STRING}&amp;blablabla [L]
# BEGIN WordPress
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . domen/index.php [L]
# END WordPress
====
can you help me why it not work...</description>
		<content:encoded><![CDATA[<p>Hi i am using this code but it not work nothing i can access.the code is<br />
====<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_URI} wp-admin/<br />
RewriteCond %{QUERY_STRING} !blablabla<br />
RewriteRule .*.php [F,L]<br />
RewriteCond %{QUERY_STRING} !kaboom<br />
RewriteRule ^hidden/(.*)domen/ wp-admin/$1?%{QUERY_STRING}&amp;blablabla [L]<br />
# BEGIN WordPress<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . domen/index.php [L]<br />
# END WordPress<br />
====<br />
can you help me why it not work&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronidhbd</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-15988</link>
		<dc:creator>Ronidhbd</dc:creator>
		<pubDate>Fri, 21 Jan 2011 14:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-15988</guid>
		<description>Hi,
Everything is OK. But my password doesn&#039;t work and I can&#039;t log in. So, after adding the code, do I need to reset my admin user name and pass word via PHP-MyAdmin? Or please give the solution. Thank you.
Regards,
Roni</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Everything is OK. But my password doesn&#8217;t work and I can&#8217;t log in. So, after adding the code, do I need to reset my admin user name and pass word via PHP-MyAdmin? Or please give the solution. Thank you.<br />
Regards,<br />
Roni</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lazeg</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-15982</link>
		<dc:creator>Lazeg</dc:creator>
		<pubDate>Tue, 21 Dec 2010 22:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-15982</guid>
		<description>RewriteCond %{REQUEST_FILENAME} !load-styles.php
RewriteRule .*.php [F,L]

solved the css case.</description>
		<content:encoded><![CDATA[<p>RewriteCond %{REQUEST_FILENAME} !load-styles.php<br />
RewriteRule .*.php [F,L]</p>
<p>solved the css case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thanh</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-15956</link>
		<dc:creator>thanh</dc:creator>
		<pubDate>Sun, 14 Nov 2010 06:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-15956</guid>
		<description>i have a big problem ! it&#039;s turn on 500 error when i try to redit the .htaccess file ! can any body help ? my host has problem ?</description>
		<content:encoded><![CDATA[<p>i have a big problem ! it&#8217;s turn on 500 error when i try to redit the .htaccess file ! can any body help ? my host has problem ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thanh</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-15955</link>
		<dc:creator>thanh</dc:creator>
		<pubDate>Sun, 14 Nov 2010 06:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-15955</guid>
		<description>just say thanks much ! i will dig it !</description>
		<content:encoded><![CDATA[<p>just say thanks much ! i will dig it !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: project707</title>
		<link>http://www.michikono.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/#comment-15954</link>
		<dc:creator>project707</dc:creator>
		<pubDate>Sat, 13 Nov 2010 06:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-folder/#comment-15954</guid>
		<description>Actually it really seems that even the redirection bit itself isn&#039;t functioning beyond just some assets not loading. It&#039;s likely that is the issue undoo is facing though. 

I now work for a company that would likely be considered more &quot;enterprise&quot;, and though we use our own framework for most applications, it makes some sense to have some kind of cms that everyone is familiar with and is easy to deploy for the blog and news related parts of our sites - thing is in that environment people are certainly a bit more concerned about security, and this obfuscation of admin files at the very least is considered a crucial step to making an application as well known as WP secure.

I kind of feel like this is something that should be possible on a more core app and admin-panel level, but maybe it means making it known that this is a concern for some of us who would still like to use the application...</description>
		<content:encoded><![CDATA[<p>Actually it really seems that even the redirection bit itself isn&#8217;t functioning beyond just some assets not loading. It&#8217;s likely that is the issue undoo is facing though. </p>
<p>I now work for a company that would likely be considered more &#8220;enterprise&#8221;, and though we use our own framework for most applications, it makes some sense to have some kind of cms that everyone is familiar with and is easy to deploy for the blog and news related parts of our sites &#8211; thing is in that environment people are certainly a bit more concerned about security, and this obfuscation of admin files at the very least is considered a crucial step to making an application as well known as WP secure.</p>
<p>I kind of feel like this is something that should be possible on a more core app and admin-panel level, but maybe it means making it known that this is a concern for some of us who would still like to use the application&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Object Caching 448/453 objects using disk: basic

Served from: www.michikono.com @ 2012-02-10 18:40:00 -->
