0
我有一個網站,路徑爲http://www.example.com/academic-solutions/resources/title-of-content/,我想重定向到http://www.example.com/title-of-content/。我在我的.htaccess文件中使用了下面的代碼,它似乎確實在執行正確的重定向,但由於某些原因導致無限循環。此代碼導致無限循環的任何原因?.htaccess重定向無盡循環
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_URI} ^/academic-solutions/resources/(.+)$ [NC]
RewriteRule . /%1 [L,R=301]
任何幫助將不勝感激。如果這很重要,這是一個WordPress的網站。
感謝您的建議。我嘗試過,但現在我每次嘗試訪問http://www.example.com/academic-solutions/resources/title-of-content/時都會被重定向到主頁 – rynoceris