I will be really thankfull for any help, because After reading and trying a lot of tutorials, i have not found any solution. After i change domain name from www.examlpe.fr to www.newExample.fr, i have only the home page works successfully but others links returns 404 not found error. I try to manage this with Permalinks, i found only the default permalink works.
in wp_config i set:
define( 'WP_HOME', 'http://newExample.fr' );
define( 'WP_SITEURL', 'http://newExample.fr' );
Also in functions.php i set:
update_option( 'siteurl', 'http://newExample.fr' );
update_option( 'home', 'http://newExample.fr' );
my .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
In addition, i try to update .htaccess(to make an old one and to create a blank one) file and edit permissions while editing primalinks
Also i have change in mysite.conf to replace AllowOverride None --> AllowOverride All
thank you in advance for your help