可能重复:
重定向 *.php 以清除 URL
我敢肯定这已经在这里问过,但出于某种原因,无论我尝试什么似乎都不起作用。
我所拥有的是: http ://example.com/share/edit.php?id=59
我想要的是: http ://example.com/share/59
我.htaccess
的是:
RewriteEngine on
RewriteRule ^share/([0-9]+)$ share/edit.php?id=$1
有什么我做错了吗?该.htaccess
文件在example.com/share
目录中。