一般来说,这是可能的,但您需要定义ADMIN_COOKIE_PATH
在您的wp-config.php
到值/
这可能会导致安全问题。
首先,在中定义此重写规则。htaccess在wordpress重写规则之前:
# Make sure, there is a trailing slash
RewriteRule ^submit-project/add$ submit-project/add/ [R=301,L]
# mask the urls
RewriteRule ^submit-project/add/$ /wp/wp-admin/post-new.php [L,QSA]
RewriteRule ^submit-project/add/post.php?$ /wp/wp-admin/post.php [L,QSA]
# this is the wordpress rule:
RewriteRule . /index.php [L]
现在需要在
wp-config.php
define( \'ADMIN_COOKIE_PATH\', \'/\' );
我建议不要在生产性站点上使用此选项。考虑在前端提供一个特殊的输入公式,使用短代码或比所示示例更具侵略性的东西。