Change PHP version

PHP 7.4

# Use PHP 7.4
AddHandler application/x-httpd-php74 .php

PHP 8.0

# Use PHP 8.0
AddHandler application/x-httpd-php80 .php

PHP 8.3

# Use PHP 8.3
AddHandler application/x-httpd-php83 .php

 

Redirect url

Method 1

Redirect 301 /oldpage.html http://example.com/newpage.html

Method 2

RewriteEngine On
RewriteRule ^oldpage.html$ http://example.com/newpage.html [R=301,L]