可以帮助我吗?我想在我的网站的 url 中隐藏文件扩展名。
所以一个例子是 http://www.mysite.com/home.php http://www.mysite.com/control.php
而是显示为 http://www.mysite.com/home http://www.mysite.com/control
我一直在研究这个,发现这个代码似乎隐藏了 url 中的文件扩展名,但现在我的链接不起作用,我收到 404 错误。我认为我需要修改我的站点链接路径或类似的东西。
有人可以告诉我我需要做什么,这是我在.htaccess中使用的代码:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)/$ $1.php
RewriteCond %{THE_REQUEST} ^[A-Z]+\ /([^/]+/)*[^.]+\.php(\?[^\ ]*)?\ HTTP/
RewriteRule ^(([^/]+/)*[^.]+)\.php$ http://www.mysite.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ http://www.mysite.com/$1/ [R=301,L]