我想让这个 url 指向同一目录中的另一个 url,但是如果不给出绝对 url,我就无法让它工作。
我想要这个网址 http://www.mysite.com/path/file/
指向: http ://www.mysite.com/path/file.php
我有这个: RewriteRule ^(\w+)/?$ /path/$1.php
我想要这个: RewriteRule ^(\w+)/?$ $1.php
所以它应该自动推断该url应该指向同一目录中的同名文件。可能吗?
我想让这个 url 指向同一目录中的另一个 url,但是如果不给出绝对 url,我就无法让它工作。
我想要这个网址 http://www.mysite.com/path/file/
指向: http ://www.mysite.com/path/file.php
我有这个: RewriteRule ^(\w+)/?$ /path/$1.php
我想要这个: RewriteRule ^(\w+)/?$ $1.php
所以它应该自动推断该url应该指向同一目录中的同名文件。可能吗?