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