11 lines
261 B
PHP
11 lines
261 B
PHP
|
<?php
|
||
|
if(isset($_SERVER['REMOTE_ADDR'])) exit;
|
||
|
|
||
|
$_SERVER['SERVER_PORT'] = 80;
|
||
|
|
||
|
include(dirname(__FILE__).'/../../config/config.inc.php');
|
||
|
include(dirname(__FILE__).'/googlesitemap.php');
|
||
|
|
||
|
$googlesitemap = new GoogleSitemap();
|
||
|
$googlesitemap->generateSitemap();
|