vote up 0 vote down star

Dear all

i have used rewrite url module but not able to redirect to the target page and I am getting error as The requested URL /old.html was not found on this server.

here is my code. Please see to that and suggest to me

RewriteEngine On RewriteRule ^old.html$ new.html [R]

flag

33% accept rate

4 Answers

vote up 1 vote down check

Is AllowOverride set to All in your httpd.conf? Like this:

   AllowOverride All

Also, your .htaccess should inlcude the L modifier for the last rule, and if you really want to redirect permanently, R=301:

RewriteEngine On 
RewriteRule ^old.html$ /new.html [R=301,L]
link|flag
AllowOverride FileInfo suffices. – Gumbo Jul 22 at 13:20
Thank u .Its works – Ayyappan Jul 23 at 6:53
vote up 0 vote down

Try also setting the RewriteBase to / like so

RewriteBase /
link|flag
vote up 0 vote down

i am also Try this code for

RewriteEngine On

RewriteBase /

RewriteRule ^old.html$ /new.html [R=301,L]

error as The requested URL /old.html was not found on this server.

How to check the load module in apache server

link|flag
vote up 0 vote down

You need to escape the . in .html with a \

So its:

RewriteEngine on
RewriteRule ^old\.html$ new.html [R]
link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.