Quote:
Originally Posted by RDS Hosting
You could give something like this a try. Replace MyPage with the name of the page you want it to appear as.
Let me know if it works.
Code:
RewriteEngine on
RewriteRule MyPage(.*)\.html$ /page.php?p=$1
|
I just tried this method:
RewriteEngine on
RewriteRule MyPage(.*)\.html$ /page.php?p=$1
but not working,
just did a URL redirect that is working:
rewritecond %{http_host} ^mydomain.com [nc]
rewriterule ^(.*)$ http://www.mydomain.com/$1 [r=301,nc]