投稿名の構造に設定されているデフォルトのWordpress.htaccessを取得しました(http://exampleblog.com/dev/the-post-slug)
これは.htaccessです
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /dev/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /dev/index.php [L]
</IfModule>
# END WordPress
私がする必要があるのは、http://exampleblog.com/dev/the-post-slugのようなURLに、http : //exampleblog.com/dev/the-post-slug/mydemoのような独自の接尾辞を追加できることです。 、そして私は今http://exampleblog.com/dev/wp-content/themes/the-theme/my-custom-folderである何かを指摘したいと思います
したがって、このURL http://exampleblog.com/dev/the-post-slug/mydemoにアクセスして、この実際のパッチのコンテンツを表示する 必要がありますhttp://exampleblog.com/dev/wp-content/themes/the- theme/my-custom-folderと私は方法を見つけることができません
ありがとう