Created
March 21, 2011 21:55
Revisions
-
jhaus revised this gist
Mar 21, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /path/to/front/of/site/under/root/directory/local_example_com/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d -
jhaus created this gist
Mar 21, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /path/to/front/of/site/local_example_com/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /path/to/front/of/site/under/root/directory/local_example_com/index.php [L] </IfModule> # END WordPress