Redirect 301 и 410 на PHP
| Trustmaster |
|
|---|---|
|
Может быть, проще воспользоваться плагином r301? Если это голый PHP, то что-то вроде:
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://твой_новый_url.html");
May the Source be with you!
|