.htaccess drupal redirection
Categories:
.htaccess drupal redirection
.htaccess code snippet to have any url to redirect to another url. You would insert this in your .htaccess file. This is very useful when you are migrating a static html site into a Drupal site.
# RewriteBase /drupal
# custom redirects
RewriteRule ^sample.html$ http://www.sample.com/sample [R=301,L]
# end custom redirects- 74 reads
Post new comment