0
我怎麼可以重寫URL:HTTP:// my_domain_name/FILE_NAME到: HTTP://my_domain_name/depictions/file_name.htmlhtaccess的 - 重寫URL
例如:網址:http://domain.com/application 到網址:http://domain.com/depictions/application.html
我怎麼可以重寫URL:HTTP:// my_domain_name/FILE_NAME到: HTTP://my_domain_name/depictions/file_name.htmlhtaccess的 - 重寫URL
例如:網址:http://domain.com/application 到網址:http://domain.com/depictions/application.html
對於每一個file_name
:
RewriteEngine On
RewriteRule ^(.+) depictions/$1.html [L]
什麼是'HTTP:// my_domain_name /'應該做的? – neurino 2011-04-06 13:26:17