Abu Romaïssae
Abu Romaïssae

Reputation: 3911

WordPress arabic permalinks

I'm creating an arabic blog, using the arabic version of wordpress, but when I set the permalink configuration to use the post name, I get a not found error message with similar text to:

The requested URL /سيبس/ was not found on this server.

Does anybody have any clues ?

Upvotes: 0

Views: 2788

Answers (1)

Abu Romaïssae
Abu Romaïssae

Reputation: 3911

and thanks for your support to me :)

I have solved my problem, and what was going wrong is my .htaccess file, when installing an arabic wordpress blog locally, I noticed that it was working very well, so I made a comparaison and I noticed that by local .htaccess has content when the other doesn't.

So what solved my problem is putting the following code in my website .htaccess file:

# 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

Upvotes: 2

Related Questions