我的脚本面临错误 404。
我想隐藏页面标题。例如
http://example.com/final/admin/admin.php
我想躲admin.php
起来
http://example.com/final/admin
这是我的 .htaccess 总是返回404 page not found 错误
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/final/.*$
RewriteRule ^(.*)$ /final/$1 [L]
这是我的 index.php 代码
<?php
/**
* @author Mina Wilson
* @copyright 2012
* // EPCI Pharma Survey | Rights Reserved
*/
// Inialize session
session_start();
echo $_SESSION['message']; unset($_SESSION['message']);
ob_start();
session_destroy();
// Check, if user is already login, then jump to secured page
ob_start();
if (isset($_SESSION['name'])) {
header('Location: login_process.php');
}
ob_flush();
?>
-- html here
谁能告诉我怎么了?