如何进行URL重写?

时间:2012-02-11 01:04:02

标签: php .htaccess url-rewriting

我对.htaccess文件中的URL重写一无所知,似乎无法弄清楚如何做我需要做的事情。

我有这样的网址:

www.website.com/subdir/10-this-is-a-post

我在subdir,index.php中有一个php文件,该文件中的代码需要根据页面名称开头的数字从数据库中提取内容 - 在本例中为10。

更复杂的是,基本目录中有一个.htaccess文件(即subdir的父目录),它有以下代码:

<IfModule mod_rewrite.c>  
Options -MultiViews  
RewriteEngine On  
RewriteBase /  
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteRule . /index.php [L]  
</IfModule>  

关于如何实现这一目标的任何建议?

1 个答案:

答案 0 :(得分:0)

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

这会将/ ...之后的所有内容放到index.php /...

示例:/ subdir / 10-this-is-a-post

将被重写为:/index.php/subdir/10-this-is-a-post

使用它来解析段:

$_SERVER['REQUEST_URI_PATH'] = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
$segments = explode('/', $_SERVER['REQUEST_URI_PATH']);