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.
What I did was reinstalled WordPress from the Dashboard Update area…then I made the Permalinks like this
/index.php/%postname%/
It worked fine
Just had the same problem.
Turns out that my host (names.co.uk) doesn’t use Apache, instead it uses Zeus – which does not support Mod_ReWrite, and so no .htaccess file.
They have published a workaround here:
http://www.names.co.uk/support/hosting/linux_hosting/1119-wordpress_rewrite_script.html
For installations up any level from the docroot:
Maybe check your host and see if uses Zeus too.
Looking around, and after hrs of trying to figure out why all of the sudden,
/%postname%/
stopped working,i read somewhere(Found it!)
about performance issues reguarding
and all the running around WP does with the server just to return said data
and long story short, it was recommended for performance reasons (usually with bigger sites) to start with a number etc…
Since my
/%postname%/
stopped working out of the blue.i changed my newly not working permalink of /%postname%/ to /%post_id%/%postname%/
and its now working.