Quote:
Originally Posted by Barefootsies
I have set up a new blog, and when the new posts are made. They are going to the new page. However, the clickable links are not working. I am thinking maybe it is a write issue (cmod 777) on the server, but I could be wrong.
http://celebrityfeetandsoles.com/
|
I had this shitty problem too few weeks ago

chmode 755/777 on index.php and wp-content + htaccess with
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Done.