Problem with wordpress permanlink

Status
Not open for further replies.

Pumbaz

New Member
Messages
3
Reaction score
0
Points
0
Hello!

I've a problem with wordpress permanlink

Seems all works fine on WP but when I've tried to access on setting->permanlinks, the website return tu me a blank page (with only the left menu of WP)

All other settings runs fine

I've installed WordPress with Softaculous and I get this error
Than I've reinstalled it manually,and created a new dabase also, and get the same error

I'm not able to find a solution :confused:
 

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
Go to the htaccess file that it's using to rewrite the links and make sure that RewriteBase / is uncommented.
 

Pumbaz

New Member
Messages
3
Reaction score
0
Points
0
Thank you for your help

Anyway the htaccess is:

# Do not remove this line, otherwise mod_rewrite rules will stop working
RewriteBase /


# 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

So Rewrite base seems out of comment line...but I've not solve the problem
 

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
I see that the RewriteBase / is defined there twice. Try commenting out the first one at the top.
 

Pumbaz

New Member
Messages
3
Reaction score
0
Points
0
Thank you so much Calistoy

Problem solved through commenting out the first rewrite base sentences

You can close this topic
 
Status
Not open for further replies.
Top