きれいなURLを使いたいです。そこで、ネットを検索して、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
なぜこれが起こっているのですか?