i want to modify my permalink structure to a /%postname%/ to use Buddypress on a wordpress website server.
After some trial, i experiencing some trouble and even with my search in different forum, i don't know how to solve it.
My .htaccess permission is for the trial 666 so wordpress have to modify this file, but won't (last file modify at my server installation). In the database, the permalinks structure succesfully passed to %postname%.
Now, i have a 404 error in all pages i want to access.
.htaccess file :
# 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
I running Apache, so to force the vars selection, i modified to this in the wp-include/vars.php :
//$is_apache = (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false || strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false);
$is_apache = 1;
What i have to do now ?
#EDIT : I've reinstalled it, retry to do all of this, and same problem... Apache is owner of the file so i really don't understand...