実現したいこと
パーマリンク設定を日付投稿名にして投稿記事にアクセスしたい
環境
VirtualBox内に仮想環境を構築
php - 5.6.40
Wordpress - 5.4.1
行ったこと
.htaccessファイルを作成し以下のように記述
env
1# BEGIN WordPress 2<IfModule mod_rewrite.c> 3RewriteEngine On 4RewriteBase /%year%/%monthnum%/%day%/%postname%/ 5RewriteRule ^index.php$ - [L] 6RewriteCond %{REQUEST_FILENAME} !-f 7RewriteCond %{REQUEST_FILENAME} !-d 8RewriteRule . /index.php/%year%/%monthnum%/%day%/%postname%/ [L] 9</IfModule> 10# END WordPress
ローカルでのアクセスURL
必要な情報か分かりませんが載せます。
http://192.168.33.10:8000/index.php/2020/05/17記事名/
参考にしたサイト
パーマリンク設定
あなたの回答
tips
プレビュー