如何在htaccess文件中将这个url“www.domain.com/index.php?route=custom/static/page”改写为“www.domain.com/page”,基本上就是想取出index.php?route=来自网址的自定义/静态/。
我不知道正则表达式,所以我尝试了http://www.generateit.net/mod-rewrite/,但它只生成
RewriteEngine On
RewriteRule ^([^/]*)$ /index.php?route=$1 [L]
这不会从 URL 中删除“自定义/静态”,我也尝试了其他一些示例,但只删除了 index.php?并且不传递变量,任何帮助表示赞赏。