我遇到的问题是第一个 URL 有效,而第二个无效。
http://www.example.com/podcasts
http://www.example.com/podcast
它们都是 HTML 文件,因此将 .html 添加到第二个文件即可。只有当 html 扩展被剥离(这是我想要发生的)时,才会出现重定向问题。
我认为问题在于“播客”既是文件夹又是 html 文件。换句话说,有一个名为“podcast”的文件夹,还有一个名为 podcast.html 的文件,其扩展名被自动剥离(这是我的意图)。
那么如何解决这个重定向问题呢?我希望文件夹和 html 仍然具有相同的名称,并且 html 扩展名被剥离,就像现在一样。
这是我的 .htaccess 文件的副本(编辑:添加 L 标志)
RewriteEngine On
RewriteBase /
#removing trailing slash
RewriteRule ^(.*)/$ $1 [R=301,L]
#non www to www
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
#shtml
AddType text/html .html
AddHandler server-parsed .html
#html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]
#index redirect
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/
RewriteRule ^index\.html$ http://example.com/ [R=301,L]
很确定与 %{REQUEST_FILENAME} !-f 相关的 RewriteRule 导致了这个问题。404 错误不会发生循环。
想法?