使用 .htaccess 进行 URL 重写的几个简单方法
[代码] [其他]代码
01 .htaccess
02 RewriteEngine On
03 RewriteCond %{REQUEST_FILENAME} !-f
04 RewriteCond %{REQUEST_FILENAME} !-d
05 RewriteRule ^(.*)$ $1.php [L,QSA]
06 # http://domain/about -> http://domain/about.php
07
08 --------------------------------------------------
09
10 .htaccess
11 RewriteEngine On
12 RewriteCond %{REQUEST_FILENAME} !-f
13 RewriteCond %{REQUEST_FILENAME} !-d
14 RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
15 # http://domain/about -> http://domain/index.php?q=about
16
17 <?php
18 // $url_data is an array
19 $url_data = explode("/",$HTTP_SERVER_VARS['PATH_INFO']);
20 ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论