【发布时间】:2017-09-08 10:39:00
【问题描述】:
我正在使用 htaccess 重写 url。
这是我的 .htaccess 文件
Options -Indexes
RewriteEngine on
RewriteRule (.*)/$ post.php?&url=$1
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) $1.php [L]
我想从网址末尾删除斜杠。
例如:
https://www.example.com/some-post/
到
https://www.example.com/some-post
PS。不是来自 index.php,而是来自不同的页面。
【问题讨论】:
标签: php regex .htaccess mod-rewrite