我希望将所有请求abcxyzpqr.do
发送到abcxyzpqr
即所有带有扩展名的请求都应该是相同的名称但没有扩展名
问问题
48 次
1 回答
0
试试这个:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
将 html 替换为您的文件扩展名,例如:php、htm、asp
它应该按照您想要的方式工作。
学分/更多信息: http ://eisabainyo.net/weblog/2007/08/19/removing-file-extension-via-htaccess/
于 2012-04-26T11:02:22.773 回答