我正在尝试在主题激活时设置永久链接结构。以下函数包含在主题的function.php中。
// Executes function on theme activation
function myactivationfunction() {
global $wp_rewrite;
$wp_rewrite->set_permalink_structure( '/%category%/%postname%/' );
// register taxonomies/post types here
flush_rewrite_rules();
}
add_action("after_switch_theme", "myactivationfunction", 10 , 2);
此代码正常工作,但值未写入 .htaccess 或 .htaccess 未创建。如何动态编写 .htaccess 文件?
任何帮助将不胜感激。
谢谢