我得到了在帖子名称结构上配置的默认 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 中我可以添加我自己的 sulfixes,比如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-主题/我的自定义文件夹,我只是找不到方法
谢谢