我想:
domain.com/example
目标:
domain.com/folder/example.cshtml
任何人都可以帮我改写它的重写规则吗?
非常感谢每一个建议:)
我编辑了这个问题,以便它实际上关注重要的事情。
答案 0 :(得分:0)
为什么你不使用mod-rewrite?
RewriteCond %{THE_REQUEST} /folder/example.cshtml
RewriteRule ^$ /example.cshtml [R=301,L,NE]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^example.cshtml /folder/example.cshtml [L]
有时候你需要乱用斜线
答案 1 :(得分:0)
我想这不可能按照我想要的方式完成。
我必须将example.cshtml
移到根目录。