我试图从Apache 1.3.42中的子目录文件夹中删除尾部斜杠,但是当我试图将规则添加到.htaccess
文件时,我的Apache版本不支持命令DirectorySlash Off
。
目前我的链接行为如下:
www.example.com/folder
定向到www.example.com/folder/
我要的是:
- 将
www.example.com/folder/
定向到www.example.com/folder
我当前的.htaccess
文件如下所示:
AddType application/x-httpd-php .html
RewriteEngine On
RewriteBase /
#non www to www
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
#removing trailing slash
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ $1 [R=301,L]
#html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.html [NC,L]
#index redirect
#directory remove index.html
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/
RewriteRule ^index\.html$ http://www.example.com/ [R=301,L]
#directory remove index
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\ HTTP/
RewriteRule ^index http://www.example.com/ [R=301,L]
#sub-directory remove index.html
RewriteCond %{THE_REQUEST} /index\.html
RewriteRule ^(.*)/index\.html$ /$1 [R=301,L]
#sub-directory remove index
RewriteCond %{THE_REQUEST} /index
RewriteRule ^(.*)/index /$1 [R=301,L]
#remove .html
RewriteCond %{THE_REQUEST} \.html
RewriteRule ^(.*)\.html$ /$1 [R=301,L]
我确实知道这很可能是一个很难解决的问题,但我还是很感激你能看它。
1条答案
按热度按时间w8f9ii691#
除了删除尾部斜杠之外,还需要添加一些其他规则。使用
DirectorySlash Off
,从无斜杠到尾部斜杠的重定向停止,但是如果访问任何目录,它将 * 打印目录的内容 *,而不是显示索引文件。这意味着您必须在目录内部添加一个尾随斜杠。因此,请更改以下行:
收件人: