creating a URL rewrite in wordpress -


i'm trying create custom url rewrite in wordpress. basically, want users able set browser mysite.com/.well-known/stellar.toml , contents of following file uploaded media file: mysite.com/content/uploads/2016/11/stellar.toml.

i tried following rewrite rule in functions.php, saved permalinks flush rewrite rules, still didn't work. see may have done incorrectly?

function custom_rewrite_basic() {

add_rewrite_rule('.well-known/stellar.toml','wp-content/uploads/2016/11/stellar.toml','top');

}

add_action('init', 'custom_rewrite_basic');


Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -