SHOW:
|
|
- or go back to the newest paste.
1 | # Use PHP5 Single php.ini as default | |
2 | AddHandler application/x-httpd-php5s .php | |
3 | ||
4 | # BEGIN WordPress | |
5 | <IfModule mod_rewrite.c> | |
6 | RewriteEngine On | |
7 | RewriteBase / | |
8 | - | RewriteRule ^index\.php$ - [L] |
8 | + | |
9 | RewriteCond %{REQUEST_FILENAME} !-d | |
10 | RewriteRule . /index.php [L] | |
11 | </IfModule> | |
12 | # END WordPress |