php-使用mod_rewrite将路径转换为查询字符串变量

我正在尝试使Apache发送:
http://mydomain.com/these/are/arguments/mmmk

至:
http://mydomain.com/?pages=these/are/arguments/mmmk

这样$_GET [‘pages’]将显示这些/ are / arguments / mmmk.

我已将“ AllowEncodedSlashes”设置为“开”.

该规则必须能够处理尾部斜杠,并且在没有子页面时(例如http://mydomain.com)

有谁知道如何完成这项任务?

解决方法:

为了不重写图像/脚本,您需要确保文件或目录不首先存在于.htaccess文件中

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d

  # Rewrite everything else through the pages parameter 
  RewriteRule ^(.+)$/?pages=$1 [L] 
上一篇:php-htaccess在iis上不起作用


下一篇:16@nginx之rewrite(重定向)