WordPress Permalinks Does Not Work in xampp Setup WordPress permalinks não funciona na configuração xampp
xampp provides a convenient way to quickly and easily install and setup a web server that works without much configuration. xampp fornece uma maneira conveniente de forma rápida e fácil de instalar e configurar um servidor web que funciona sem muita configuração. However, permalinks feature won’t work with the default installation of xampp, even though you can properly customize the permalinks structure to create the .htaccess file. No entanto, permalinks recurso não irá funcionar com a instalação padrão do xampp, mesmo que você pode personalizar o permalinks estrutura adequada para criar o arquivo. Htaccess arquivo.
When you click on any permalinks, your WordPress blog will return a 404 error instead, saying the post not found. Quando você clicar em qualquer permalinks, seu blog WordPress irá retornar um erro 404 em vez disso, dizendo o lugar não foi encontrado. Instead, you can only access your blog posts via default permalinks structure, which is in the form of http://www.mydigitallife.info/?p=123. Ao invés disso, você só poderá acessar o blog postagens por omissão permalinks estrutura, que está sob a forma de http://www.mydigitallife.info/?p=123.
This is because in xampp, mod_rewrite is not enable by default. Isso ocorre porque, no xampp, o mod_rewrite não é permitir que por omissão. Beside, AllowOverride directive in Apache configuration file is also set to None by default, causing Apache web server to ignore any .htaccess file, which used to rewrite the permalinks to the post’s actual url. Ao lado, AllowOverride directiva no arquivo de configuração do Apache também está definido para Nenhum por padrão, causando o servidor web Apache para ignorar qualquer. Htaccess arquivo, que usada para reescrever o permalinks para o lugar real da URL.
To use permalinks in WordPress that installed on xampp-based server, edit the httpd.conf that locates in C:\Program Files\xampp\apache\conf directory (folder). Para utilizar permalinks no WordPress que xampp instalado no servidor de base, editar o httpd.conf que localizam em C: \ Arquivos de programas \ xampp \ apache \ conf diretório (pasta). Open httpd.conf in any text editor, search for “mod_rewrite”. Abra httpd.conf em qualquer editor de texto, procure por "o mod_rewrite". You should come to a line like this: Você deve chegar a uma linha como esta:
#LoadModule rewrite_module modules/mod_rewrite.so # LoadModule rewrite_module modules / mod_rewrite.so
Remove the hash sign (#) from the line. Retire a cerquilha (#) a partir da linha. The # indicates the line is not in effect. O # indica a linha não está em vigor. The changed line should looks like this: A alteração da linha deverá se parece com esta:
LoadModule rewrite_module modules/mod_rewrite.so LoadModule rewrite_module modules / mod_rewrite.so
After that, search for “AllowOverride”. Depois disso, procure por "AllowOverride". You will come to a line like this: Você vai chegar a uma linha como esta:
AllowOverride None Nenhum AllowOverride
If the above line is contained within default directory (mean the directory declaration is just Se a linha acima está contido dentro diretório padrão (média declaração é apenas o diretório
AllowOverride All Todos AllowOverride
Restart the Apache. Reinicie o Apache. Permalinks is working after restart. Permalinks está a trabalhar após reiniciar.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Esta é uma página traduzida máquina que é fornecida "como está" sem garantia. Machine translation may be difficult to understand. A tradução automática pode ser difícil de compreender. Please refer to Por favor, consulte a original English article Inglês original article whenever possible. sempre que possível.
Share and contribute or get technical support and help at Compartilhe e contribuir ou obter suporte técnico e ajudar a My Digital Life Forums Minha vida digital Fóruns .
Related Articles Artigos relacionados
- Easily Set Up Web Server with XAMPP Facilmente criado com o servidor web XAMPP
- Enable MySQL InnoDB Storage Engine Support in XAMPP Installation Ativar MySQL motor de armazenamento InnoDB apoio na instalação XAMPP
- Download WordPress 2.3 Release Candidate 1 (RC1) with Tags Support Download WordPress 2,3 release candidate 1 (RC1), com apoio Tags
- Paginating or Split WordPress Post or Page with NextPage in WordPress Not Working Paginating ou Split WordPress Correios ou na página com NextPage WordPress Não Trabalho
- Download Previous or Old Version of WordPress Download anterior ou antiga versão do WordPress
- Tag Managing Thing Plugin for WordPress 2.3 or Above Gerenciando Tag Coisa Plugin para WordPress 2,3 ou acima
- Integrate WordPress including Comments with bbPress Forum using bbSync Comentários integrar WordPress inclusive com bbPress Fórum usando bbSync
- How to Move WordPress Blog to New Domain or Location Como se deslocar para WordPress blog novo domínio ou local
- WordPress 2.1.1 Critical Security Alert - Download Upgrade to 2.1.2 WordPress 2.1.1 Críticas Alerta de segurança - Download Upgrade para 2.1.2
- Must Have WordPress Plugins Deve ter WordPress Plugins













August 15th, 2008 04:59 15 de agosto de 2008 04:59
Thanks A LOT! Thanks a lot! Works great! Funciona muito bem!