Quote:
RewriteEngine On
RewriteRule ^profile.html$ MYLINKHERE.com/page.html[L,R=301]
|
This rule causes a redirect header to be outputted, you've told it do do this by adding R=301 to the parameters at the end.
If you was to use
Quote:
RewriteEngine On
RewriteRule ^profile.html$ MYLINKHERE.com/page.html[L]
|
this would silently rewrite the link as opposed to using an external redirect.
Don't forget to flush your browsers cache when testing.