我打算收到一些网址。我将使用哪些mod重写规则为传入的URL进行以下转换:
http://domain.com/i/ =>
http://domain.com/index.php
http://domain.com/i/b/233223/c/23333 =>
http://domain.com/index.php?b=233223&c=23333
http://domain.com/i/dd/9844kjhf/fj/djP756/ee/kjhKJH =>
http://domain.com/index.php?dd=9844kjhf&fj=djP756&ee=kjhKJH
http://domain.com/r/ =>
http://domain.com/restore.php
http://domain.com/w/place/chicago =>
http://domain.com/withold.php?place=chicago
http://domain.com/w/ =>
http://domain.com/withold.php
基本上,域后的第一部分对应一个页面,其余部分是一组要传递的任意数量的参数。
答案 0 :(得分:3)
尝试:
# If the URI is just /i/, rewrite to index.php
RewriteRule ^i/?$ /index.php [L]
# If the URI is /i/ plus some paths, rewrite the paths into query string and let rewrite engine loop
RewriteRule ^i/([^/]+)/([^/]+)(/?.*)$ /i$3?$1=$2 [L,QSA]
这将占用internal recursion limit所设置的路径节点数,默认情况下为10.这意味着默认情况下,除非达到此限制,否则最多可以有9组参数。所以:
http://example.com/i/a/1/b/2/c/3/d/4/e/5/f/6/g/7/h/8/j/9
将首先匹配第二条规则,并继续循环:
1. /i/b/2/c/3/d/4/e/5/f/6/g/7/h/8/j/9?a=1
2. /i/c/3/d/4/e/5/f/6/g/7/h/8/j/9?b=2&a=1
3. /i/d/4/e/5/f/6/g/7/h/8/j/9?c=3&b=2&a=1
4. /i/e/5/f/6/g/7/h/8/j/9?d=4&c=3&b=2&a=1
etc.
直到最后你离开
/i?j=9&h=8&g=7&f=6&e=5&d=4&c=3&b=2&a=1
并且第一条规则得到应用,你最终应该得到:
/index.php?j=9&h=8&g=7&f=6&e=5&d=4&c=3&b=2&a=1
答案 1 :(得分:1)
由于您的URL中可以包含无限数量的参数,因此最好在您的应用程序中创建一个脚本来解析它们。
您可以使用.htaccess将所有不正确的请求定向到路由文件(例如index.php)
Options -MultiViews
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
然后运行类似PHP explode()的内容来解析网址