什么是正确的正则表达式
创建这个网址:domain.nl/projecten/scheidingswanden
http://www.domain.nl/?module=projectencat&action=scheidingswanden
换句话说:用斜杠替换变量名 ?module= 和 &action=
但也反过来,因为前端控制器需要读取获取变量模块和操作
不知道是不是只有htaccess,但是缺少这个逻辑
谢谢,理查德
RewriteRule ^([^/])/([^/])$ ?module=projectencat&action=scheidingswanden [L]
这可能会有所帮助:
RewriteEngine on
RewriteRule ^([a-zA-Z]+)/(.*)/index.html$ index.php?module=projectencat&action=scheidingswanden
[a-zA-Z]+ = requires one or more alphabetic chars
(.*) = requires one or more any kind of chars
这是你想要的:
RewriteRule ^([^/]+)/([^/]+)$ ?module=$1&action=$2