-1
我正在wordpress項目。對我的分類鏈接的網址是WordPress的重定向從文章index.html
http://mywebsite.com/cardfinder/hotel_credit_cards/index.html。
我想它應該被重定向到
http://mywebsite.com/cardfinder/hotel_credit_cards
有什麼想法,我怎麼能做到這一點?
我正在wordpress項目。對我的分類鏈接的網址是WordPress的重定向從文章index.html
http://mywebsite.com/cardfinder/hotel_credit_cards/index.html。
我想它應該被重定向到
http://mywebsite.com/cardfinder/hotel_credit_cards
有什麼想法,我怎麼能做到這一點?
在根目錄下創建.htaccess
規則。
RewriteEngine On
RewriteRule ^index\.html$/[R=301,L]
RewriteRule ^(.*)/index\.html$ /$1/ [R=301,L]
我已經試過了。它會將我重定向到http://mywebsite.com/hotel_credit_cards,而我希望它能訪問http://mywebsite.com/cardfinder/hotel_credit_cards。 Cardfinder是我的基本目錄,我將.htacess保存到cardfinder文件夾。 –