I currently have a few 301 redirects that I set up via cPanl and and a few I did manually in htaccess. If I delete the redirects from cPanel, will they automatically delete themselves from the htaccess file?
Also...one other question. It appears I have redirects set up in two different ways - which one should I be using:
Redirect 301 /examplepage.php http://www.example.com/blog/examplepagenew/
or this way:
RewriteCond %{HTTP_HOST} ^example\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^example\page\.php$ "http\:\/\/www\.example\.com\/New\Example\Page\.php" [R=301,L]
To me, the first way seems so much simpler, but didn't know why or is there was any benefit to the second method?