我通过以下链接的GET请求获得了价值:
http://example.com/index.php?param=value
我正在使用jquery来获取URL,然后将param和value分开。现在,我要使用以下格式的网址:
http://example.com/param/value
在Jquery中,我想捕获参数和值。可以在htaccess的帮助下实现吗?
答案 0 :(得分:0)
尝试一下:
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /recent/
RewriteRule ^([^/]+)/([0-9]+)/?$ index.php?$1=$2 [L,QSA]