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 characters
| # When installing wordpress on a separate dir inside your $_SERVER['DOCUMENT_ROOT'] | |
| # you may need to create a rewrite rule, otherwise wordpress will start complaining... | |
| # | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule ^(.*)$ /wordpress-installation-dir/wordpress/$1 [L] |