RewriteEngine On
RewriteRule ^Assamese/([0-9a-zA-Z]+) assamese.php?gender=$1 [NC,L]
RewriteRule ^Assamese/([0-9a-zA-Z]+)/([0-9a-zA-Z]+) assamese.php?gender=$1&alp=$2 [NC,L]
答案 0 :(得分:0)
您可以从PHP的$ _SERVER超级全局访问该URL,特别是REQUEST_URI索引。
例如:
echo $_SERVER['REQUEST_URI'];
此超全球中可用的变量/值的完整列表(包括主机名,路径等)位于this page in the PHP docs。
您可能还会发现this stack overflow answer有价值。