I have an issue to rewrite url which is like:
http://examplepage.com/news/?aid=n_557eb95ed07360.45147988
to
http://examplepage.com/some-other-name
but it needs to be only this url if parameter changes it should do nothing. I think the problem is the dot in the parameter?
My current .htaccess for this matter is like this:
RewriteCond %{QUERY_STRING} ^aid=n_557eb95ed07360.45147988$
RewriteRule ^news/$ /some-other-url [NC,L]
Any help appreciated. Thanks.