Rediriger le site wordpress Localhost vers le tableau de bord
-
-
Avez-vous changé l'URL du siteet l'URL d'accueil?Did you change site URL and home URL ?
- 0
- 2016-04-23
- Sumit
-
Lorsqueje teste/débogue un site wordpress localement,je définis l'URL du site dansmonfichier hôtepour accéder au site avec lamême URL.(L'inconvénientest que vousne pouvezpas accéder au site réeltant que vous avez cetenregistrement dans votrefichier hôte)When I test/debug a wordpress site locally, I set the site url in my host file to access the site with the same url. (down side is that you can't access the real site while you have this record in your host file)
- 0
- 2016-04-24
- Rabin
-
Oui,je change l'URL du siteet l'URL du domicile ...Yes i change site url and home url...
- 0
- 2016-04-25
- Abdul Ali Khan
-
1 réponses
- votes
-
- 2016-04-24
Cela ressemble au site & amp; les URL d'accueilne sontpas définies correctement.
Vouspouvez les définir dans wp-admin àpartir de l'écran Paramètres,bien qu'il semble que vousne puissiezpas y accédermaintenant,donc une solution de contournementest defaire ce qui suit:
- Modifiez votrefichier
wp-config.php
- Effectuez une recherchepour voir si
WP_HOME
ouWP_SITEURL
estprésent dans cefichier - Sitelest le cas,remplacez l'adresseindiquéepar
'http://localhost/wordpress/'
Si
WP_HOME
etWP_SITEURL
ne sontpasencoreprésents dans votrefichierwp-config.php
,ajoutez le code suivant aufichier (n'importe où avant le commentaire qui dit "c'esttout,arrêtez demodifier"):define ('WP_HOME','http://localhost/wordpress/'); define ('WP_SITEURL','http://localhost/wordpress/');
S'il s'agit de l'adresse correcte à laquelle vous avezinstalléet quetout a été déplacé correctement,vous devriez alors être redirigé vers votre écran de connexion lorsque vous visitez http://localhost/wordpress/wp-admin .
< EDIT:
S'ilne redirigetoujourspas,vérifions votrefichier
.htaccess
. Je suis assez sûr que celane devraitpas avoir d'impact sur la connexion à wp-admin,maisnous devrionsnéanmoins le corriger. Ouvrez.htaccess
et recherchez la section Wordpress similaire à celle ci-dessous,puis ajoutezwordpress/
là où vous le voyez ci-dessous surRewriteBase
etRewriteRule
lignes:# BEGIN WordPress & lt; IfModulemod_rewrite.c > RewriteEngine On RewriteBase/wordpress/ RewriteRule ^index \ .php $ - [L] RewriteCond% {REQUEST_FILENAME}! -F RewriteCond% {REQUEST_FILENAME}! -D RewriteRule./wordpress/index.php [L] & lt;/IfModule > # END WordPress
Lamise àjour dufichier
.htaccess
est une autre étape qui doit êtrefranchie lorsque vous déplacez un site,mais dans laplupart des cas,celan'affectera que vos Permalienset estpriseen charge simplementen cliquant sur Enregistrer sur le Paramètres ->page Permalien dans wp-admin. J'espère que samise àjourmanuellepourra vous aider aussi ...It sounds like the site & home URLs are not set correctly.
You can set these in wp-admin from the Settings screen, although it sounds like you may not be able to get in there right now, so a workaround is to do the following:
- Edit your
wp-config.php
file - Search to see if
WP_HOME
orWP_SITEURL
is present in this file - If they are, change the address listed to
'http://localhost/wordpress/'
If
WP_HOME
andWP_SITEURL
aren't present in yourwp-config.php
file yet, add the following code to the file (anywhere before the comment that says 'that's all, stop editing'):define('WP_HOME', 'http://localhost/wordpress/'); define('WP_SITEURL', 'http://localhost/wordpress/');
If this is the correct address you've installed at, and everything has been moved across correctly, you should then be taken to your login screen when you visit http://localhost/wordpress/wp-admin.
EDIT:
If it's still not redirecting, let's check your
.htaccess
file. I'm fairly sure this shouldn't be impacting the log-in to wp-admin, but we should correct it nevertheless. Open.htaccess
and look for the Wordpress section similar to the below, and addwordpress/
where you see it below on theRewriteBase
andRewriteRule
lines:# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wordpress/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wordpress/index.php [L] </IfModule> # END WordPress
Updating the
.htaccess
file is another step that needs to be taken when you move a site, but in most cases it will only affect your Permalinks and is taken care of just by clicking Save on the Settings -> Permalink page in wp-admin. Hopefully updating it manually now might help you too...-
Oui,je déplace correctement Déplacertoutes les choses vers localhost.Yes I move Correctly Move All things to localhost..
- 0
- 2016-04-25
- Abdul Ali Khan
-
define ('WP_HOME','http://localhost/wordpress/'); define ('WP_SITEURL','http://localhost/wordpress/');et celane fonctionnepasnonplus ....define('WP_HOME', 'http://localhost/wordpress/'); define('WP_SITEURL', 'http://localhost/wordpress/'); and this is also not working....
- 0
- 2016-04-25
- Abdul Ali Khan
-
Lorsque vous dites «nefonctionnepas»,voulez-vous dire que vous rencontrez lemêmeproblème de redirection vers http://localhost/dashboard/lorsque vousessayez de visiter http://localhost/wordpress/wp-admin?When you say 'not working', do you mean you are getting the same issue with it redirecting to http://localhost/dashboard/ when you try to visit http://localhost/wordpress/wp-admin ?
- 0
- 2016-04-25
- Tim Malone
-
Oui,je reçois lemêmeproblème.Yes i getting same issue.
- 0
- 2016-04-25
- Abdul Ali Khan
-
Que contient votrefichier `.htaccess`?What's in your `.htaccess` file?
- 0
- 2016-04-25
- Tim Malone
-
Dans lefichier .htaccess, # COMMENCER WordPress
RewriteEngine On RewriteBase/ RewriteRule ^index \ .php $ - [L] RewriteCond% {REQUEST_FILENAME}! -F RewriteCond% {REQUEST_FILENAME}! -D RewriteRule./index.php [L] # END WordPress In .htaccess file, # BEGIN WordPressRewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress- 0
- 2016-04-26
- Abdul Ali Khan
-
Hmm ok.J'ai ajouté quelquesinstructionspourmettre àjour `.htaccess` aumessage ci-dessus,dites-moi comment cela sepasse.Hmm ok. I've added some instructions for updating `.htaccess` to the post above, let me know how that goes.
- 0
- 2016-04-26
- Tim Malone
-
Yay!Heureux quenous y soyons arrivés :) Veuillez accepter la question si cela afonctionnépour vous :)Yay! Glad we got there :) Pls accept the question if it worked for you :)
- 0
- 2016-04-26
- Tim Malone
-
comment accepter la questionhow to i accept question
- 0
- 2016-04-26
- Abdul Ali Khan
-
Oups désolé,je voulais dire accepter la réponse.Àgauche dema réponse,il devrait y avoir une coche sur laquelle vouspouvez appuyer.Aide àmontrer aux autres ce qui afonctionnéet me donne aussi quelquespoints;)Oops sorry I meant accept the answer. On the left of my answer there should be a tick that you can press. Helps show others what worked, and gives me some points too ;)
- 0
- 2016-04-26
- Tim Malone
Jetélécharge le site Web Wordpress du serveur vers l'hôte local lorsquej'ouvre http://localhost/wordpress/wp-admin ilme redirige http://localhost/dashboard/