我正在为一个学校项目做一个网站,我正在研究使用cleanURL,所以我按照这个教程www。你tube.com/watch?v=ZgCW2x5QCXo,当我把/ studytips / home它工作得很好,但如果我添加一个/或什么它停止工作。 发生的事情的图像Without the /foo With the /foo 我将包括他的课程,使用它我做以下事情:
if($url->segment(1)){
$s1=($url->segment(1));
if((file_exists("includes/$s1.php"))){
include("includes/$s1.php");
} else {
include("includes/404.php");
}
}else include("includes/home.php");
我想出了它不确定它是否是最好的方法^
class simpleUrl{
var $site_path;
function __construct($site_path){
$this->site_path= $this->removeSlash($site_path);
}
function __toString(){
return $this->site_path;
}
private function removeSlash($string){
if( $string[strlen($string)-1] == '/')
$string =rtrim($string,'/');
return $string;
}
function segment($segment){
$url = str_replace($this->site_path,'' , $_SERVER['REQUEST_URI']);
$url = explode('/',$url);
if(isset($url[$segment]) )
return $url[$segment];
return $url;
}
}
htaccess文件:
<IfModule mod_rewrite.c> RewriteEngine On
RewriteBase /copy/studytips/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1
</IfModule>
答案 0 :(得分:1)
您可以在.htaccess
:
RewriteEngine On
RewriteBase /copy/studytips/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ index.php/$1
无论是否使用/
都有效,但无论如何都会在重写网址中返回/
。