0
我原本希望我的網頁可以使用和不使用文件擴展名。htaccess 301重定向到.html
這是我的工作htaccess的樣子:
RewriteEngine On
# .php to .html
RewriteCond %{THE_REQUEST} \ /(.+)\.php[?\s] [NC]
RewriteRule^/%1.html [L,R=301]
# don't need extension on the end
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.+?)/?$ $1.php [L]
RewriteRule ^(.+)\.html/?$ $1.php [L,NC]
我想逆轉上述並強制所有頁面解析爲.html。我想爲Google添加301個重定向。