我刚刚在macOS High Sierra 10.13.4上的XAMPP 7.2.5上安装了一个传统的WordPress 4.7项目。
我发现我能够在*.php
下查看/Applications/XAMPP/xamppfiles/htdocs/
个文件。
例如http://127.0.0.1/wp-login.php
和http://127.0.0.1/index.php
。
但是,无法显示页面的所有永久链接。
当我访问其中一个永久链接时,我收到Object not found!
错误。
我已尝试过this post中提到的解决方案,但他们在我的案例中不起作用。
如何正确显示永久链接?
这是我的/var/www/html/.htaccess
文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress