Localhostワードプレスサイトをダッシュボードにリダイレクトする
-
-
サイトのURLとホームのURLを変更しましたか?Did you change site URL and home URL ?
- 0
- 2016-04-23
- Sumit
-
WordPressサイトをローカルでテスト/デバッグするときは、ホストファイルにサイトのURLを設定して、同じURLでサイトにアクセスします.(欠点は、ホストファイルにこのレコードがある間は実際のサイトにアクセスできないことです)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
-
はい、サイトのURLとホームのURLを変更します...Yes i change site url and home url...
- 0
- 2016-04-25
- Abdul Ali Khan
-
1 回答
- 投票
-
- 2016-04-24
サイト&のようですねホームURLが正しく設定されていません.
これらは[設定]画面からwp-adminで設定できますが、現在はアクセスできないようです.回避策は次のとおりです.
-
wp-config.php
ファイルを編集します - このファイルに
WP_HOME
またはWP_SITEURL
が存在するかどうかを検索します - そうである場合は、リストされているアドレスを
'http://localhost/wordpress/'
に変更します.
WP_HOME
とWP_SITEURL
がwp-config.php
ファイルにまだ存在しない場合は、次のコードをファイルに追加します( 「これですべてです.編集を停止してください」というコメントの前の任意の場所:define( 'WP_HOME'、 'http://localhost/wordpress/'); define( 'WP_SITEURL'、 'http://localhost/wordpress/');
これがインストールした正しいアドレスであり、すべてが正しく移動されている場合は、 http://localhost/wordpress/wp-admin .
編集:
それでもリダイレクトされない場合は、
.htaccess
ファイルを確認しましょう.これがwp-adminへのログインに影響を与えることはないと確信していますが、それでも修正する必要があります..htaccess
を開き、以下のようなWordpressセクションを探し、RewriteBase
とwordpress/
を追加します. > RewriteRule 行:#BEGIN WordPress < IfModulemod_rewrite.c> RewriteEngineオン RewriteBase/wordpress/ RewriteRule ^index \ .php $-[L] RewriteCond%{REQUEST_FILENAME}!-f RewriteCond%{REQUEST_FILENAME}!-d RewriteRule./wordpress/index.php [L] </IfModule> #WordPressを終了
.htaccess
ファイルの更新は、サイトを移動するときに実行する必要があるもう1つの手順ですが、ほとんどの場合、パーマリンクにのみ影響し、[保存]をクリックするだけで処理されます.設定-> wp-adminのパーマリンクページ.うまくいけば、今すぐ手動で更新することもあなたに役立つかもしれません...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...-
はい私は正しく移動しますすべてのものをローカルホストに移動します.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/');そしてこれも機能していません...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
-
「機能していません」と言った場合、http://localhost/wordpress/wp-adminにアクセスしようとすると、http://localhost/dashboard/にリダイレクトされるのと同じ問題が発生するということですか?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
-
はい、同じ問題が発生します.Yes i getting same issue.
- 0
- 2016-04-25
- Abdul Ali Khan
-
`.htaccess`ファイルには何が入っていますか?What's in your `.htaccess` file?
- 0
- 2016-04-25
- Tim Malone
-
.htaccessファイルでは、 #WordPressを始める
RewriteEngineオン RewriteBase/ RewriteRule ^index \ .php $-[L] RewriteCond%{REQUEST_FILENAME}!-f RewriteCond%{REQUEST_FILENAME}!-d RewriteRule./index.php [L] #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
-
うーん、わかりました.上記の投稿に `.htaccess`を更新するための手順をいくつか追加しました.どうなるか教えてください.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
-
わーい!私たちがそこに着いたことをうれしく思います:)それがあなたのために働いたならplsは質問を受け入れます:)Yay! Glad we got there :) Pls accept the question if it worked for you :)
- 0
- 2016-04-26
- Tim Malone
-
質問を受け入れる方法how to i accept question
- 0
- 2016-04-26
- Abdul Ali Khan
-
申し訳ありませんが、答えを受け入れるつもりでした.私の答えの左側にあなたが押すことができるチェックマークがあるはずです.何がうまくいったかを他の人に示すのに役立ち、私にもいくつかのポイントを与えます;)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
http://localhost/wordpress/wp-admin を開くと、WordpressWebサイトをサーバーからローカルホストにアップロードしますa>リダイレクトされます http://localhost/dashboard/