I installed WordPress for a friend, who is hosted on a private company's web server. But when I try to access any pages I made or individual posts, I get a 404 error.
Here is the website:
http://www.elissarosenthal.com
Any ideas?
I installed WordPress for a friend, who is hosted on a private company's web server. But when I try to access any pages I made or individual posts, I get a 404 error.
Here is the website:
http://www.elissarosenthal.com
Any ideas?
Hi,
Set your desired permalink from wordpress admin area and then add this code in htaccess of your site/blog:
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Now, check with old and new posts.
Thanks,
Shane G.
That worked! Thanks!
This topic has been closed to new replies.