嘿,我的.htaccess文件出现问题,并在文件末尾删除了斜杠。
我读到最好有一个URI结构
http://www.example.com/folder/file
而不是:
http://www.example.com/folder/file/
因为显然是一个尾部斜杠在目录级别呈现它。
所以我几乎就在那里,从stackoverflow上的另一个来源得到了这个,但它为文档添加了一个斜杠,而不是把它拿走......我似乎无法弄清楚如何把它带走并重定向任何带斜杠的东西都不是目录,请原谅我,因为我对.htaccess文件知之甚少。
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)/$ $1.php
# Forces a trailing slash to be added
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]
答案 0 :(得分:0)
试
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ http://%{HTTP_HOST}/$1