如何将网址重写: http:// my_domain_name / file_name : 的 HTTP://my_domain_name/depictions/file_name.html
例如:url:http://domain.com/application 到网址:http://domain.com/depictions/application.html
答案 0 :(得分:0)
对于每个file_name
:
RewriteEngine On
RewriteRule ^(.+) depictions/$1.html [L]