View Single Post
Old 2011-07-26, 04:47 PM   #2
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
The Default .htaccess should include the following which sounds like it is missing if your permalink structure is correctly set and you're getting 404s.

Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote