我有很多没有扩展名的网址(3000),因此需要规则将其重定向到相同的网址,但最后会添加.php。
我已设法完成重写规则,但我想要301重定向。
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.+)$ $1.php [L]
任何帮助都会很棒。感谢
答案 0 :(得分:0)
感谢anubhava的答案是:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.+)$ $1.php [L,R=301]