I also wish that from index.php, will start.htm. Can this be accomplished?
If I so Adjusters, then I get an error:
---
Ich möchte auch, dass aus index.php, start.htm wird. Kann man das bewerkstelligen?
Wenn ich das so einstelle, dann bekomme ich ein Fehler:
Parse error: syntax error, unexpected T_STRING, expecting T_FUNCTION in C:\xampp\htdocs\2\includes\sessions.php on line 617
The Code on the line 617 ist:
--
Der Code in der Zeile 617 ist:
define('COOKIE_NAME', '4images_');
My Code for the session.php:
--
Mein Code für die session.php
elseif (strstr($url, 'index.php')) {
if (strstr($url, 'page=')) {
preg_match('#page=([0-9]+)&?#', $url, $matches);
if (isset($matches[1])) {
$split = explode('?', $url);
$url = $split[0];
$query = @$split[1];
$url = str_replace('index.php', 'startseite.'.$matches[1].'.htm', $url);
$query = str_replace('page='.$matches[1].'&', '', $query);
$query = str_replace('&page='.$matches[1], '', $query);
$query = str_replace('page='.$matches[1], '', $query);
if (!empty($query)) {
$url .= '?' . $query;
}
}
}
And .htaccess
--
Und .htaccess
RewriteRule ^startseite\.htm$ index.php?%{QUERY_STRING}
RewriteRule ^startseite\.([0-9]+)\.htm$ index.php?page=$1&%{QUERY_STRING}