简单PHP URL重写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单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) // Base root for the server side (like for the php inclusion) // Array of arguments passed in the adresse bar $args = explode("/",str_replace(dirname($_SERVER["SCRIPT_NAME"])."/", "", $_SERVER["REQUEST_URI"])); ?>
以上是关于简单PHP URL重写的主要内容,如果未能解决你的问题,请参考以下文章