Duqe's Warehouse

워드프레스 설치 후 개인용 설정 및 버그 리포트 본문

정보기술

워드프레스 설치 후 개인용 설정 및 버그 리포트

duqe 2024. 9. 18. 19:41

General Setting

  • Date: Y-m-d
  • Time: H:i
  • Unique Address: postname

If the WordPress Installation Path Is not Root but a Other Directory

/* The method to upload the .htaccess file to the root directory */
/* .htaccess */
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/wordpress installed directory name/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /wordpress installed directory name/$1
RewriteRule ^(/)?$ wordpress installed directory name/index.php [L] 
</IfModule>

/* The method to upload the index.php file to the root directory */
/* index.php */
<?php
header("Location: /wordpress installed directory name/");
?>

Installing Plug-in

  • Akismet Anti-spam: Spam Protection
  • WP Dark Mode

WP_AUTO_UPDATE_CORE 개의 상수가 'true' (으)로 정의되었습니다

  • Download wp-config.php
  • Open it in notepad, find command line "define( 'WP_AUTO_UPDATE_CORE', true );", then change value "true" to "minor" or "false"
  • Upload wp-config.phpdjq

업데이트 실패 응답이 유효한 JSON 응답이 아닙니다

  • It cause by different "고유주소" in setting and "고유주소" in post
  • Change slug and title in "빠른편집"