If you've moved (are planning to move) to new domain & you don't want to simply redirect to new domain. You want to tell your site visitors that your domain has changed.
This simple PHP script shows very simple message that domain has changed for set amount of seconds, then redirected to the new domain.
It is also render 301 status code. So Google will know your page was moved, too.
It will fetch the current request URL, and redirect to the new domain with exact same URI.
https://github.com/katzueno/simple-php-redirect
- For Apache server, mod_rewrite module should be enabled, and allowing to use .htaccess
- You could set it in Apache config.
- For Nginx server
- PHP-FPM
- Ability to set nginx config
- Change the config values such as new domain to index.php to your desired state.
- Place (or upload) index.php script to your old domain's webroot and clear all other files
- Edit your apache config, .htaccess or Nginx config so that all request will go through this index.php
- Enjoy the rest
$newDomain: Enter the new domain name. Starts with https://
$siteNameEn: Site name in English.
$siteNameJa: Site name in Japanese.
$sec: Seconds to wait and redirect
Create .htaccess file (if your server is allowing it), and enter the following.
If you want to place it under some directory, make sure to change RewriteBase.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase / # if it's lives under subdirectory, add the directory accordingly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
I assume you know about Nginx server and its config.
Add the following config in your nginx config.
I assume you've set ~ \.php($|/) location to send it to php-fpm.
Change location to sub-directory if you want just to place underneath, and absolute_redirect must be turned off.
location / {
index index.php index.html index.htm;
if (!-e $request_filename) {
rewrite ^ /index.php last;
}
}
| Version | Date | Description |
|---|---|---|
| 0.9.0 | Oct 17, 2021 | Initial release |
Katz Ueno (GitHub @katzueno)
