<meta http-equiv="refresh"
content="0; url=http://example.org/new-page.html">
HTML redirect. HTML meta refresh redirection code.
HTML meta refresh redirect is a client side redirect and is not 301 permanent redirect.
The HTML meta refresh with 0 seconds time interval, is considered by Google as a hint for 301 redirect for pagerank transfer.
If you want to do real 301 permanent redirect, you can do it with PHP redirect after enabling PHP code in HTML files.
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://example.org/new-page.html");
set profiling=1;
SELECT * FROM `table` ORDER BY (`column1` - `column2`);
SELECT *, (`column1` - `column2`) AS `column3` FROM `table` ORDER BY `column3`;
show profiles;
<?php
class Dish
{
protected $ingridients;
public function addIngridient($ingridient)
{
if($ingridient instanceof Ingridient)
$this->ingridients[] = $ingridient;
else
die('error');
}
public function showIngridients()
{
foreach ($this->ingridients as $ingridient)
{
echo 'Ingridient: '.$ingridient->name.'<br>';
}
}
}
class Ingridient
{
public $name;
public $price;
public function __construct($name, $price)
{
$this->name = $name;
}
//Код класса ингридиента
}
$soup = new Dish();
$soup->addIngridient( new Ingridient('water', '1$') );
$soup->addIngridient( new Ingridient('beef', '5$') );
$soup->addIngridient( new Ingridient('salt', '0.1$') );
$soup->showIngridients(); //нет ошибки
$soup->addIngridient('test'); //есть ошибка
$soup->showIngridients();
каждая несчастливая семья несчастлива по-своему
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
</style>
<script>
// Load native UI library
var ngui = require('nw.gui');
// Get the current window
var nwin = ngui.Window.get();
onload = function() {
nwin.show();
nwin.maximize();
require('nw.gui').Window.get().showDevTools(); // закомментировать если не нужна панель отладки
document.location = 'http://ТВОЙ_УРЛ_В ВЕБЕ';
};
</script>
</head>
<body></body>
</html>
{
"main": "index.html",
"name": "МОЯ_СУПЕР_ЦЭРЭМЭ",
"description": "ОПИСАНИЕ",
"version": "0.1.0",
"single-instance": true,
"keywords": [
"crm"
],
"window": {
"title": "МОЯ_СУПЕР_ЦЭРЭМЭ",
"toolbar": false,
"frame": true,
"width": 1280,
"height": 1024,
"position": "center",
"min_width": 1024,
"min_height": 768
},
"webkit": {
"plugin": true,
"page-cache": true
},
"author": "АФФТАР",
"maintainers": [
{
"name": "АФФТАР",
"email": "МЭЙЛ",
"web": "http://САЙТ"
}
]
}
If you know the contents of the line, this is an ideal use case for:
git log -S <search_string> -- path/to/file
which shows you commits which introduce or remove an instance of that string.
Как быть, если вдруг косячнули, или хост делает магическую непонятную хрень? (сталкивался как-то когда помогал товарищам. Правишь файл, заливаешь, все права на файл идентичны, а хост перестает его обрабатывать, сайт падает) Что делать в таких случаях?Проверяете на пустом файле-болванке - это надо делать всегда перед началом любых работ!