You can use this rule:
RewriteRule ^menu\.php$ /new-page-name? [L,R=301]
Take note of trailing ?
in the end which is used for stripping off any existing query string in the original URI.
You can use this rule:
RewriteRule ^menu\.php$ /new-page-name? [L,R=301]
Take note of trailing ?
in the end which is used for stripping off any existing query string in the original URI.