1
我環顧四周尋找答案,但我找不到適合我的東西。刪除尾部的斜線
我有這樣的:
RewriteRule ^(.*)/?$ example.php?option=$1 [L]
我想是這樣的:
http://example.com/foo/bar/ > http://example.com/example.php?option=foo/bar
http://example.com/foo/bar > http://example.com/example.php?option=foo/bar
但正在發生的事情是這樣的:
http://example.com/foo/bar/ > http://example.com/example.php?option=foo/bar/
http://example.com/foo/bar > http://example.com/example.php?option=foo/bar
所以,當有一個結尾斜槓,它將它添加到它發送給PHP文件的選項中,但我不希望它將其刪除。有任何想法嗎?
[This answer](http://stackoverflow.com/a/8744956/3770448)可能是有趣的。 – ljacqu
@ljacqu沒有。由於我的網站的性質,我不能做重定向或它會循環。但我確實找到了一種在PHP文件中工作的方法。 –