在Ubuntu / Mac中,例如,localhost / page会自动重定向到localhost / page.php。
但这在Windows中不起作用。你怎么做像localhost / asdf重定向到localhost / asdf.php?
的东西答案 0 :(得分:0)
我假设您知道.htaccess文件是什么。
您可以通过两种方法实现这一目标:
方法1:
`#1- Loads the page asdf.php but
displays asdf in the address bar
RewriteBase /site
RewriteRule ^([^/\.]+)?$ $1.php `
方法2:
`#2- Loads the page asdf.php and
displays asdf.php in the address bar.
The R flag tells Apache to redirect to the
url.
RewriteBase /site
RewriteRule ^([^/\.]+)?$ $1.php [R]`
我希望这会对你有所帮助。