Answers for "htaccess redirect specific url"

PHP
3

.htaccess redirect to another domain

Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [NC]
RewriteRule ^(.*)$ http://NEWDOMAIN.com [R=301,L]
Posted by: Guest on December-22-2020
1

htaccess redirect to html page

RedirectMatch 301 ^/blog/about /blog/about.html
Posted by: Guest on December-03-2020
0

htaccess redirect to another domain

RewriteEngine On
RewriteRule ^(.*)$ http://newdomain.com/ [R=301]
Posted by: Guest on October-13-2021
0

redirect htaccess http to https

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]
Posted by: Guest on April-14-2020

Code answers related to "htaccess redirect specific url"

Browse Popular Code Answers by Language