Here is the official PHAT answer
Quote:
Create a text file named .htaccess and put the following lines in it.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Now upload this file to the root of your wordpress installation and your links will work.
|