我想在我.htaccess
的文件中放入一些东西,以隐藏.php
我的 php 文件的文件扩展名,所以去 www.example.com/dir/somepage 会显示他们 www.example.com/dir/somepage.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]