Determining an optimal price for the things you company sells has little to do with math, formulas and complex calculations, and is based more on perception, convenience and competitive positioning. — Eric Rudolf, http://www.thesmallcompanyblog.com/TheBlog/2011/01/4-pricing-mistakes-you-need-to-stop-making/

Categorized | Linux, Web (互联网)

Apache WordPress Rewrite Rules…

Posted on 10 September 2006 by Erwin

Picture 2-1Thanks to the PerishablePress site for helping me with the correct rewrite rules to get my WordPress configuration running…. The htaccess Rules for all WordPress Permalinks. This will make your Permalinks as well as other content links all function properly. Works great!

[ #1 ] If WordPress installed in the root directory »

# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress

[ #2 ] If WordPress installed in a subdirectory called “foo” »

# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /foo/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /foo/index.php [L] </IfModule> # END WordPress

Leave a Reply