我正在使用 XAMPP,但我无法在本地主机上使用 .htaccess 文件。我尝试了很多次.. 在线工作良好。但本地主机显示[在此服务器上找不到请求的 URL]
我的根文件夹是真实的
localhost/acre/real/property_available.php
localhost/acre/real/properties
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /acre/real/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^properties$ /property_available.php/$1 [NC,QSA]
</IfModule>
请