Id make sure you have your .htaccess file in the root directory first.
Also, got a link to the site? Might help
errr. what’s .htaccess file?
http://www.beautycafeonline.com
You’ll see that you can get to the homepage but not any other links.
Thanks in advance.
in /public_html/
There should be a file called .htaccess
Do you have it? If not you will need to download again and make sure that file gets into the root directory.
There’s no .htaccess in my /public_html/
Where can I download it?
Well you can create one but I think for you the easiest way is to download the whole WP package then just copy that 1 file over.
http://wordpress.org/download/
I still can’t find the file .htaccss anywhere. It’s named exactly .htaccess?
I’m so dumb. T_T
Yes its named that
Maybe you got it hidden. For folder options on your computer look for “hide extension of known file type” and make sure its NOT checked.
To manually create it open notepad.
Paste in this 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
then save as “.htaccss” and upload to root directory.
If you cant see it after you save then you probably need to do the 1st step in this post.
Thank you so much, but still I have no idea where .htaccess is though i tried to find it with spotlight. (I’m using MAC Os X 10.4.11)