Redirection vers l'ancien domaine après la migration
-
-
J'ai ajouté ces lignes dans wp-config.phpet cela afonctionné. `define ('WP_SITEURL','https://domain.com'); define ('WP_HOME','https://domaine.com'); `I have added these lines in wp-config.php and it worked. `define('WP_SITEURL', 'https://domain.com'); define('WP_HOME', 'https://domain.com');`
- 2
- 2018-06-12
- Vignesh Chinnaiyan
-
Vérifiez ce lien quipourrait vous être utile.https://www.phparticles.com/wordpress/replace-old-to-new-url-in-the-wordpress-database/Check this link which might be helpful to you. https://www.phparticles.com/wordpress/replace-old-to-new-url-in-the-wordpress-database/
- 0
- 2020-07-20
- Mr.Happy
-
6 réponses
- votes
-
- 2015-05-07
Monproblèmeest résolu,je publie ceci comme réponse afin que quelqu'un d'autrepuisseen profiter.
Monproblème était,
siteurl
ethomeurl
n'étaientpasmis àjour,doncj'aiplacédefine('RELOCATE',true);
dansmonFichierwp-config.php
.Etencore unefoisessayé d'accéder au site Web,ilest allé à l'URL correctemaistout lecss
avait disparu. Ensuite,je me suis dirigé verswp-admin
et ilest également venu sanscss
maisj'ai quandmêmeessayé deme connectermais cettefois,celam'a conduit à l'URLet auwith css
maisje neme suispas connecté. Ensuite,j'aiessayé deme connecteret cettefoisje me suis connecté avec succès. Ensuite,j'ai changé les deuxurls
dessettings
dans lepanneau d'administration.Après cela,vous devez supprimertous lesfichiers de cache de votrenavigateurpour supprimer une sorte de redirectionpersistante.
J'espère que cela aidera quelqu'un d'autre àfaireface aumêmeproblème.
My issue is resolved, I am posting this as an answer so that someone else can benefit out of it.
My issue was,
siteurl
andhomeurl
were not updated, so I have placeddefine('RELOCATE',true);
in mywp-config.php
file. And again tried to access the website , it gone to the correct url but all thecss
was gone. Then I headed over towp-admin
and it also came with nocss
but still I tried to login but this time it has taken me to the correct url andwith css
login page but didn't logged in. Then Again I have attempted to login and this time I have logged in successfully. Then I have changed both theurls
fromsettings
in the admin panel.After this you must to delete all your browser cache files to delete anny kind of persistant redirection.
Hope this helps someone else dealing with the same problem.
-
Cela afait l'affairepourmoi!That did the trick for me!
- 0
- 2018-11-29
- Avishai
-
Salut!Jeme demande où vous avez ajouté cela dans votrefichier de configuration,carj'essaie àplusieursendroits avecpeu de succès.Hi! I'm wondering whereabouts in your config file you added this, because I'm trying at several places with little success.
- 0
- 2018-12-10
- QuestionerNo27
-
- 2015-08-29
J'aieu lemêmeproblème (fonctionnetrèsbien maintenant),voici ce quej'aifait
au lieu d'essayer d'accéder aupanneau d'administration avec yoursite.com/wp-admin,j'aiessayé avec yoursite.com/wp-login.phpet celam'a amené aupanneau d'administration demonnouveau site.Ensuite,j'ai changé le domaine du site dans lesparamètresgénérauxet maintenant celafonctionnetrèsbien.
I had the same problem (works fine now), here is what i done
instead of try to access to the admin panel whit yoursite.com/wp-admin i tried with yoursite.com/wp-login.php and it took me to the admin panel of my new site. Then I changed the site domain in general settings and now it works just fine.
-
Merci,j'aipumodifier lesparamètreset maintenant lespagesinternesfonctionnenttrèsbien mais lapage d'accueilne fonctionnepas.J'aimis àjour lespermaliens dans l'url de lapage d'accueilThanks, I was able to edit the settings and now the internal pages are working just fine but the home page is not working. I have updated the permalinks n the url for the home page
- 0
- 2019-01-03
- viCky
-
- 2018-04-23
Exécutez ce qui suit lorsque vous changez de domaine:
UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'siteurl'; UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'home';
Run the following when you are changing domain:
UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'siteurl'; UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'home';
-
Mais cen'est clairementpas suffisant.L'ancien domaine seratoujours stocké dans lesmessages,lesbarres latérales,d'autres optionset ainsi de suite ...But it's clearly not enough. The old domain will be still stored in posts, sidebars, other options and so on...
- 0
- 2018-05-25
- Krzysiek Dróżdż
-
- 2017-02-26
Changer le champ wp_options aidera unpeu,maisparfois vospages,vos articleset vosplugins utiliseront des références absolues à desimageset à d'autresfichiers.Dans ce cas,vous devrezmettre àjourtoute labase de données.Commeiln'y apas de "tout remplacer"facile dansphpMyAdmin (sauf si vous construisez uneinstruction UPDATEen SQL),ilestpréférable de:
- Sauvegardez l'intégralité de votrebase de données sousforme defichier SQL.(J'inclurais l'option DROP TABLE)
- Exportez l'intégralité de votrebase de données sousforme defichier sql (texte)et ouvrez-le dans un éditeur detexte.(J'utilise Notepad ++ )
- Effectuez un Tout remplacer detoutes lesinstances de votre ancien domainepar votrenouveau domaine.(c'est-à-dire olddomain.com avecnewdomain.com)
- Enregistrez le SQLmis àjouret réimportez-le dansphpMyAdmin.
Voila!
Changing wp_options field will help a little, but sometimes your pages, posts and plugins will use absolute references to images and other files. In this case, you'll need to update the entire database. Since there's no easy "replace all" in phpMyAdmin (unless you construct an UPDATE statement in SQL), it's best to:
- Backup your entire database as an sql file. (I would include the DROP TABLE option)
- Export your entire database as a sql (text) file and open it in a text editor. (I use Notepad++)
- Do a Replace All of all instances of your old domain with your new domain. (i.e. olddomain.com with newdomain.com)
- Save the updated SQL and import it back into phpMyAdmin.
Voila!
-
Si celane résoutpas complètement leproblème: 1. Vérifiez les références de votre ancien domaine dans wp-config.php 2. Renommeztemporairement votrefichier .htaccess 3. Déplacertemporairementtous les dossiers deplug-in de réécriture de sécurité ou depermalienIf this doesn't fully resolve the problem: 1. Check for any references of your old domain in wp-config.php 2. Temporarily rename your .htaccess file 3. Temporarily move any security or permalink rewrite plugin folders
- 0
- 2017-02-26
- Tone Williams
-
Jepense que c'est la solution laplus complète.Jeme demandepourquoije suis lapremièrepersonne à voterI think this is the most comprehensive solution. Wonder why I'm the first person upvoting
- 0
- 2018-07-25
- che-azeh
-
C'est lameilleure solution ... SIDENOTE: Si vous utilisez cloudflare,videz votre cache dans votre console cloudflare!This is the best solution... SIDENOTE: If you use cloudflare, clear your cache in your cloudflare console!
- 0
- 2020-05-18
- Evan Parsons
-
- 2016-09-20
Modifiez l'URL dans lefichier debase de données d'options dansphpmyadmin.Désigne votre lien URL réel.Ensuite,ouvrez lapage wp-admin..avec le lien wp-login.php .. Tapez votre authentificationpuis dans lesparamètresgénéraux changez ànouveau le répertoire URLet accédez au site Web.
Change the URL in option database file in phpmyadmin. Means your actual URL link. Then open wp-admin page..with wp-login.php link.. Type your authentication then in general setting change the URL directory again and access the website.
-
- 2016-10-03
Pour simplement développer la réponse de Reezppo,
Ouvrez PHPMyadmin dans votre cPanel,puis cliquez sur lefichier wp_optionset vous verrez alors untas de champs que vouspouvezmodifieret vous verrez l'ancienne URL que vouspouvezensuite changermanuellementpour lanouvelle URL (à deuxendroits).Ensuite,enregistrez-leet revenez sur yoursite.com/wp-login.phpet il devrait vouspermettre de vous connecter sans rediriger.N'oubliezpas que vous vous connecterez avec l'anciennom d'utilisateuret lemot depasse Wordpress (celui du site d'origine que vous avez déplacé).
To just expand on Reezppo's answer,
Open PHPMyadmin in your cPanel and then click on the wp_options file and then you will see a bunch of fields that you can change and you will see the old url which you can then change manually to the new url (in two places). Then save it and go back to yoursite.com/wp-login.php and it should let you login without redirecting. Remember you will be logging in with the old Wordpress username and password (the one from the original site that you have moved).
J'ai déplacé l'un demes sites Web vers unnouveau domaine,voici ce quej'aifait.
phpmyadmin
Maintenant,lesproblèmes auxquelsje suis confronté sont:
wp-admin
est également redirigé vers l'ancien domaine lorsquej'essaye d'exécutermydomain.com/wp-admin
Aidez-nous si vous avez desidées à ce sujet,toute aide seraitgrandement appréciée.