Hi, I'm trying to rewrite URL's on my website,
For example.. I want http://mywebsite.com/help to display the page at http://mywebsite.com/help.htm
This is what I have so far in my .htaccess file:
This results in an error message:
Any help would be much appreciated.
edit: Nevermind, I have fixed the problem by switching $ and ^
For example.. I want http://mywebsite.com/help to display the page at http://mywebsite.com/help.htm
This is what I have so far in my .htaccess file:
RewriteEngine On
RewriteRule $help^ help.htm
RewriteRule $help^ help.htm
This results in an error message:
Not found
The requested URL /help was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
The requested URL /help was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Any help would be much appreciated.
edit: Nevermind, I have fixed the problem by switching $ and ^
Last edited: