Help with 301 Redirect issues
hi, have single page site created (free templare) html5, css , javascript www.downtoearthlandscaping.ca. linux hosting cpanel.
so understand ultimate goal is… here in nut shell. when arrive @ above url there no pages open there background gallery spinner showing pictures. trying when click on above url is, arrive instead http://www.downtoearthlandscaping.ca/#!/page_home.
the first thing tried godaddy's cpannel redirect tool;
rewriteengine on
rewritecond %{http_host} ^downtoearthlandscaping\.ca$ [or]
rewritecond %{http_host} ^www\.downtoearthlandscaping\.ca$
rewriterule ^/?$ "http\:\/\/www\.downtoearthlandscaping\.ca\/\#\!\/page_home" [r=301,l]
unfortunately url produces http://www.downtoearthlandscaping.ca/%23!/page_home , it's saying "the page not redirecting properly".
next did google search , found code , went , manually placed in root directory file .htaccess
redirect 301
/old/index.html
/new/http://www.downtoearthlandscaping.ca/#!/page_home
and tried;
rewriteengine on
rewritecond %{http_host} ^ downtoearthlandscaping.ca
[nc]
rewriterule ^(.*)$ http:// www.downtoearthlandscaping.ca/#!/page_home
$1 [r=301,nc]
and found .php option (which saved in root directory)
<?php
header("http/1.1 301 moved permanently");
header("location: http://www.downtoearthlandscaping.ca/#!/page_home");
?>
i have no idea, think because destination page not end .html not working.
anyone have ideas on how around this?
sorry display of thread
you can redirect using php or other server language.
just create index.php page below in.
<?php
header("location: http://www.downtoearthlandscaping.ca/%23!/page_home");
?>
it works, tried morning but navigation presentation doesn't quite work gets values jquery script.
its complex jquery script , dont know if whoever developed thought maybe wanting have index page open default.
edited
actually navigation work same.......i thought wasnt links go black on dark backround. if can sort out think php redirect work.
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment