设置包括道路确实使我感到困惑。 我必须失踪。
因此,我有以下公开的文字——我的服务器的链条。
photoGallery.php
header.php
我有一只手提存文件,把一个有以下结构的圆顶改用光彩。 php
RewriteRule ^gallery/([^/]+)/([0-9]+)-([^/]+)$ photoGallery.php?imageName=$2 [L]
......
http://localhost/gallery/roofing/1-picture-of-roofing
决心......
http://localhost/photoGallery.php?imageName=1
问题在于有一张PHP,包括在光盖里。 如果要改写URL的话,将无法解决问题。
include header.php
因此,我要把“S”办法包括进去,以便解决任何问题。 这里我曾尝试过......
set_include_path(get_include_path() . PATH_SEPARATOR . "../../../");
include header.php ;
我也试图确定这样的道路......
// get_include_path() returns .:/opt/lampp/lib/php
set_include_path(get_include_path() . PATH_SEPARATOR . "/opt/lampp/public_html");
include header.php ;
我永远无法成功确定包括的道路。 我做了什么错误?