My .htaccess has nothing in it even after I go into OPtions>Permalink and update it what is going on?
Check the bottom of that page…
Thread Starter
qmedia
(@qmedia)
I know that problem – it said that the permalink structure was updated and there was no notice saying something about it not being writable or something. There was no text box there.
Thank you for your response.
Delete .htaccess and try again?
If you are set to use permalinks and no htaccess is set up you will always get a 404 for a url of yourserver.com/2006/07/30/not-able-to-do-blogathon-2006/
The trouble is that type of address is only possible with permalinks and url rewriting. You’ll get a 404 so long as htaccess is not set to send all requests for non-existent files and folders to the index.php of your WordPress root. Can you not create an htaccess file?
Here’s a sample .htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
If WordPress is not installed in the root directory, this will need to be modified.
Thread Starter
qmedia
(@qmedia)
I know that, but it’s not generating an htaccess.
WordPress is installed in the root directory. When I tell it to update my permalink structure it tells me it is successful but nothing was written to htaccess.
Thank you for your response.
You could write an .htaccess file yourself. That’s what I do and prefer, rather than let WP attempt it.