WordPressファイルパス

管理画面 > 設定 > パーマリンクの設定

カスタム構造にチェック

ポスト名をリンク名にする場合
ファイルパス/archives/%postname%/

ポストIDをリンク名にする場合

ファイルパス/archives/%post_id%/

.htaccess

#ここから
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /ルートからのパス/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /ルートからのパス/index.php [L]
</IfModule>
# ここまで