• Hi,
    I have been looking for a while now but couldn’t get a solution to my issue.
    I want to change the structure of my author page from https://www.example.com/author/username to https://www.example.com/profile/?username

    This is my current htaccess:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Please help me out as to what necessary changes are required in htaccess or otherwise.
    Thank You

  • The topic ‘change url structure for /author/username’ is closed to new replies.