我的網站既解決的index.php:如何阻止網站上顯示的URL
https://www.itcontractorsuk.com和https://www.itcontractorsuk.com/index.php
我能做些什麼,使多餘的index.php不會在顯示URL。它只在主頁上發生。
我的網站既解決的index.php:如何阻止網站上顯示的URL
https://www.itcontractorsuk.com和https://www.itcontractorsuk.com/index.php
我能做些什麼,使多餘的index.php不會在顯示URL。它只在主頁上發生。
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php
RewriteRule ^index\.php$/[L,R=301]
應該這樣做。
把它放在你的.htaccess中
這確實做了重定向。上面的解決方案沒有替代方案。內部頁面正常工作沒有上述代碼。我想要一些網頁的解決方案。 –
這是做AFAIK的唯一干淨方式。 –
也許這就是你要找的東西? http://stackoverflow.com/questions/4365129/htaccess-remove-index-php-from-url – Jer
它適用於你的情況嗎? –