How to avoid having index.php in the website URL
-
Hello, I’m managing the wesite https://www.panorama-italia.com
I need to configure a custom permalink, but using something different from the default settings, I always need to specify the /index.php/ path in the URL to get the site working.
I tried to implement some suggestions I found with no luck results. Here is my .htaccess content:
# 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 WordPressIf I remove /index.php I cannot read site’s pages anymore.
Have you any precise idea how to get the site working?Tx
- The topic ‘How to avoid having index.php in the website URL’ is closed to new replies.