2
I’m having problems with Wordpress with friendly URL. It just doesn’t work even using the file . htaccess suggested by Wordpress support site.
cat .htaccess
# 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
I believe the error is in the configuration of Apache
.
Any idea how to fix this ?
You are using a local server (such as wamp, xampp, etc.) or an online server?
– lfarroco
local server on MAC OS but I think it’s the same on Linux.
– admin-absoluta
I found a post that explains well and in detail but in my case all that was missing was
AllowOverride All
.– admin-absoluta