Answers for "php index redirect to another page"

PHP
2

redirect from index.php

RewriteCond %{REQUEST_URI} /index.php
RewriteRule ^(.*)$ http://site.ru/ [R=301,L]
Posted by: Guest on November-26-2020
1

php redirect to page

header("Location: /");
exit();
Posted by: Guest on May-16-2020

Code answers related to "php index redirect to another page"

Browse Popular Code Answers by Language