用斜杠替换get变量

时间:2013-03-21 11:06:10

标签: mod-rewrite

我想摆脱url栏中的id,让每一件事都变得更简单,任何人都可以告诉我如何制作这样的东西/ math / calculus / limits_topic / vidname

1 个答案:

答案 0 :(得分:4)

使用以下.htaccess文件:

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME}\.php -f 
RewriteRule ^(.*)$ $1.php

将get方法变量传递给URL,然后将其展开

$variables = explode("/",$_SERVER['REQUEST_URI']);

例如:

actual url : http://example.com/math.php?calculus=1&limits_topic=1&vidname=1
rewrite url : http://example.com/math/1/1/1
相关问题