如何使用 .htaccess 隐藏.php URL 扩展名?
2022-08-30 21:33:24
我想要在我的文件中放入一些东西来隐藏我的php文件的文件扩展名,所以去 www.example.com/dir/somepage 会 www.example.com/dir/somepage.php 显示它们。.htaccess
.php
有没有可行的解决方案?我的网站使用HTTPS,如果这很重要的话。
这是我目前的.htaccess:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]
ErrorDocument 404 /error/404.php
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) $1\.php [L]