admin管理员组文章数量:1333614
Is it possible to create a short admin url for options page?
The default admin url is:
domain/wp-admin/admin.php?page=options-page-slug
And i want it to be: domain/wp-admin/options-page-slug
Is it possible to create a short admin url for options page?
The default admin url is:
domain/wp-admin/admin.php?page=options-page-slug
And i want it to be: domain/wp-admin/options-page-slug
Share Improve this question edited Jul 10, 2020 at 10:49 user315338 asked Jul 4, 2020 at 22:01 user315338user315338 1151 gold badge1 silver badge6 bronze badges1 Answer
Reset to default 1You mean, wp-admin/admin.php?page=options-page-slug
?
But yes, you can use the rewrite API:
add_action( 'init', function () {
// The following adds the rule into the database.
add_rewrite_rule(
'wp-admin/options-page-slug(/|$)',
'wp-admin/admin.php?page=options-page-slug',
'top'
);
} );
Or alternatively, just add this before the WordPress rules in your .htaccess
file:
RewriteRule ^wp-admin/options-page-slug(/|$) /wp-admin/admin.php?page=options-page-slug [QSA,L]
本文标签: Shorter admin url for options page
版权声明:本文标题:Shorter admin url for options page 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742276007a2445208.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论