|
start small
on the new blog, create a subdirectory called test
inside test create a .htaccess
----- .htaccess file
RewriteEngine On
----- end .htaccess file
ok now inside this test directory make a file called moo.html
.... moo.html contents
MOO
... end moo.html
ok now call this file... does it load in your browser and show MOO?
if so,
edit .htacces file in test subdirectory
.... insert this line at end of file
RewriteRule ^moo.html$ /foo.html
no reload moo.html does it redirect to a 404 page? it should meaning
everythign is working fine
|