简单PHP URL重写

Posted

tags:

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

  1. // HTACCESS FILE
  2. <IfModule mod_rewrite.c>
  3. RewriteEngine on
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteCond %{REQUEST_FILENAME} !-d
  6. RewriteRule .* index.php
  7. </IfModule>
  8.  
  9. // PHP SIDE
  10. <?php
  11. // Base host for the client assets (js, css, image)
  12. $host = dirname($_SERVER["SCRIPT_NAME"])."/";
  13. // Base root for the server side (like for the php inclusion)
  14. $root = dirname(__FILE__)."/";
  15. // Array of arguments passed in the adresse bar
  16. $args = explode("/",str_replace(dirname($_SERVER["SCRIPT_NAME"])."/", "", $_SERVER["REQUEST_URI"]));
  17. ?>

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

如何进行简单的url重写[重复]

php url重写

如何在 PHP 中进行 URL 重写?

CodeIgniter htaccess 和 URL 重写问题

PHP 的 $_GET 和 URL 重写

PHP子url重写