我想使用漂亮的网址。所以我搜索了网络并尝试使用 forcetype 方法。
httpd.conf:
<Files "main">
ForceType application/x-httpd-php
</Files>
ls htdocs/
favicon.ico index.php main.php webalizer xampp
但这不起作用。我试图找到解决方案,正如建议的那样,我还尝试了以下方法:
<Files "main">
ForceType application/x-httpd-php5
</Files>
<Files "main">
ForceType application/x-httpd-php
SetHandler application/x-httpd-php
</Files>
<Files "main">
ForceType application/x-httpd-php5
SetHandler application/x-httpd-php5
</Files>
但没有任何工作。我还在404 error
继续打开http://localhost/main
。
(http://localhost/main.php
工作正常。)我正在xampp-linux-1.8.1
使用Linux abhi-me 3.0.0-31-generic #49-Ubuntu SMP Tue Feb 19 20:02:57 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
为什么会这样?