Title: timon25's Replies | WordPress.org

---

# timon25

  [  ](https://wordpress.org/support/users/timon25/)

 *   [Profile](https://wordpress.org/support/users/timon25/)
 *   [Topics Started](https://wordpress.org/support/users/timon25/topics/)
 *   [Replies Created](https://wordpress.org/support/users/timon25/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/timon25/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/timon25/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/timon25/engagements/)
 *   [Favorites](https://wordpress.org/support/users/timon25/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Rewrite URL in page template](https://wordpress.org/support/topic/rewrite-url-in-page-template/)
 *  [timon25](https://wordpress.org/support/users/timon25/)
 * (@timon25)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/rewrite-url-in-page-template/#post-7611056)
 * You could try rewrite rules in WP. Try this
 *     ```
       add_filter( 'rewrite_rules_array', function($rules) {
           $new = array();
           $new['member/([^/]+)/?$'] = 'index.php?member=$matches[1]';
   
           return array_merge( $new, $rules );
       } );
       ```
   
 * so now you will have urls like [http://mysite.com/member/toto](http://mysite.com/member/toto)
 * more info here [https://codex.wordpress.org/Plugin_API/Filter_Reference/rewrite_rules_array](https://codex.wordpress.org/Plugin_API/Filter_Reference/rewrite_rules_array)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp-remove-post-lock/releaseLock](https://wordpress.org/support/topic/wp-remove-post-lockreleaselock/)
 *  [timon25](https://wordpress.org/support/users/timon25/)
 * (@timon25)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/wp-remove-post-lockreleaselock/#post-6835507)
 * The same problem.
 * [@crmmailtech](https://wordpress.org/support/users/crmmailtech/)
    Have you solved
   the problem?

Viewing 2 replies - 1 through 2 (of 2 total)