PHP 简单的PHP URL重写

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 简单的PHP URL重写相关的知识,希望对你有一定的参考价值。

// HTACCESS FILE
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond  %{REQUEST_FILENAME}    !-f
RewriteCond  %{REQUEST_FILENAME}    !-d
RewriteRule  .*                     index.php
</IfModule>

// PHP SIDE
<?php
	// Base host for the client assets (js, css, image)
	$host = dirname($_SERVER["SCRIPT_NAME"])."/";
	// Base root for the server side (like for the php inclusion)
	$root = dirname(__FILE__)."/";
	// Array of arguments passed in the adresse bar
	$args = explode("/",str_replace(dirname($_SERVER["SCRIPT_NAME"])."/", "", $_SERVER["REQUEST_URI"]));
?>

以上是关于PHP 简单的PHP URL重写的主要内容,如果未能解决你的问题,请参考以下文章

php url重写

PHP 的 $_GET 和 URL 重写

如何在 PHP 中进行 URL 重写?

PHP子url重写

Apache 重写 - 在 PHP 中获取原始 URL

htaccess URL 重写 page.php?page