删除子目录文件夹中的尾随斜杠Apache 1.3.42 DirectorySlash Off .htaccess

3qpi33ja  于 2022-11-16  发布在  Apache
关注(0)|答案(1)|浏览(154)

我试图从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]

我确实知道这很可能是一个很难解决的问题,但我还是很感激你能看它。

w8f9ii69

w8f9ii691#

除了删除尾部斜杠之外,还需要添加一些其他规则。使用DirectorySlash Off,从无斜杠到尾部斜杠的重定向停止,但是如果访问任何目录,它将 * 打印目录的内容 *,而不是显示索引文件。
这意味着您必须在目录内部添加一个尾随斜杠。因此,请更改以下行:

#removing trailing slash

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ $1 [R=301,L]

收件人:

DirectorySlash Off

#removing trailing slash    
RewriteCond %{THE_REQUEST_FILENAME} \ /(.*)/(\ |$|\?)
RewriteRule ^(.*)/$ $1 [R=301,L]

# internally add the slash back
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{REQUEST_URI} !/$
RewriteRule ^(.*)$ /$1/ [L]

相关问题