Search code examples
wordpress.htaccesshttp-status-code-301

301 redirect with htaccess in wordpress


How to change url from
www.abc.com/gallery/?album=id to www.abc.com/album_name with htaccess?


Solution

  • I got the temporary solution to change url www.abc.com/gallery/?album=id to www.abc.com/album_id by changing htaccess

    RewriteRule gallery/([^/]+)/? /gallery/?album=$1 [L]