So I see everyone's arguements against using this, but that seems like a huge flaw in Wordpress because a domain name as close to the root is crucial to a site's SEO.
I want my site which has rough 8 pages total to be able to be found by their simple titles, if they're preprended by a date, it just look convoluted and out of standards with most web standards.
Fast forward to me adding %postname% to my custom permalinks tab, all my url's were updated, and clicking on them brings me a 404.
No .htaccess file was made so I made one from scratch and included this :
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /Websites/Garden%20Terrace/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /Websites/Garden%20Terrace/index.php [L]
</IfModule>
# END WordPress
Update
Any of the permalinks except for the post ID option do not work. None of them work.
What o' what am I missing from this to make it actually work?
UPDATE 12/13/2011
Wordpress 3.3 was just released. And all these problems still exist. Clicking on any of the permalinks writes this to your .htaccess . The same text for any of the options :
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /Websites/Garden%20Terrace/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /Websites/Garden%20Terrace/index.php [L]
</IfModule>
# END WordPress
#
Using /%postname% doesn't work. At all.

%postname%only performance issues with permalinks. – chrisguitarguy Dec 6 '11 at 19:56.htaccessrewrite rules, and try letting WordPress generate its own.htaccessrewrite rules. If it is able to do so, you should be good to go. If, however, WordPress is unable to generate the.htaccessrules, then you have a problem. – Chip Bennett Dec 19 '11 at 13:04