Question
Wordpress permalinks problem on Ubuntu
I install wordpress and all works fine, only i can't change my permalinks. When i try to do that i get 404 error.
I create .htaccess file in worpdress root folder, below folders wp-admin, wp-content, wp-include..
I paste this in .htaccess
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
and set permisions to 666. Also mod_rewrite is enable on my server and I restart server too.
You can see my error on stuff2share.net [try to open some post].
Do you have any idea what to do?
Where i can do this?
"Edit your VirtualHost config making sure AllowOverride is set to all."
On my server i have 3 domain, 3 Virtual hosts but i don't can't find AllowOverride there.. :/
Add a comment
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×