Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Cassiano Tartari

.htaccess X apache2

Recommended Posts

Logs? Erros? O que acontece? :huh:

 

Se puder colocar seu .htacces ae. ;)

 

O meu .htaccess funciona por que em outro pc com apache1 funciona beleza, o problema eh config do apache2 mesmo, tai o codigo dele:

Options FollowSymLinks
RewriteEngine on

RewriteBase /
RewriteRule ^([a-z]+[0-9]*)/?$   /site/index.php?pessoa=$1

Acho eu que a configuracao eh em /etc/apache2/sites-available/default e ja tentei de tudo ai esta o meu arquivo todo mexido:

NameVirtualHost *
<VirtualHost *>
	ServerAdmin webmaster@localhost
	
	DocumentRoot /var/www/
	#<Directory />
	#	Options FollowSymLinks Indexes
	#	AllowOverride AuthConfig
	#</Directory>
	<Directory />
		Options FollowSymLinks Indexes
		AllowOverride None
		Order Deny,Allow
		Allow from all
	</Directory>
	<Directory /var/www/>
		#Options Indexes FollowSymLinks MultiViews
		Options FollowSymLinks Indexes
		AllowOverride none
		Order allow,deny
		Allow from all
		# This directive allows us to have apache2's default start page
				# in /apache2-default/, but still have / go to the right place
				#RedirectMatch ^/$ /apache2-default/
	</Directory>

	ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
	<Directory "/usr/lib/cgi-bin">
		AllowOverride none
		Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
		Order allow,deny
		Allow from all
	</Directory>

	ErrorLog /var/log/apache2/error.log

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog /var/log/apache2/access.log combined
	ServerSignature On

	Alias /doc/ "/usr/share/doc/"
	<Directory "/usr/share/doc/">
		Options Indexes MultiViews FollowSymLinks
		AllowOverride none
		Order deny,allow
		Deny from all
		Allow from 127.0.0.0/255.0.0.0 ::1/128
	</Directory>

</VirtualHost>

Quando eu dou um /etc/init.d/apache2 reload aparece a seguinte msg:

* Reloading web server config...											   5794
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName

Se pudesse me ajudar, ficaria bem melhor pra eu testar o meu sistema.

 

Valeu ai !

Compartilhar este post


Link para o post
Compartilhar em outros sites

O módulo rewrite já está na pasta mods-enabled?

 

Se não estiver, é necessário copiá-lo:

$ sudo cp /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/

E a parte <Directory /var/www> do arquivo de configuração deve ter o seguinte:

AllowOverride All

Tente assim:

<Directory /var/www/>
	Options Indexes FollowSymLinks MultiViews
	AllowOverride All
	Order allow,deny
	Allow from all
</Directory>

Flws...

;)

Compartilhar este post


Link para o post
Compartilhar em outros sites

O módulo rewrite já está na pasta mods-enabled?

 

Se não estiver, é necessário copiá-lo:

$ sudo cp /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/

E a parte <Directory /var/www> do arquivo de configuração deve ter o seguinte:

AllowOverride All

Tente assim:

<Directory /var/www/>
	Options Indexes FollowSymLinks MultiViews
	AllowOverride All
	Order allow,deny
	Allow from all
</Directory>

Flws...

;)

 

Muitíssimo Obrigado !!

 

Com certeza era por causa do módulo rewrite que não estava na pasta dos enable pois já tinha tentado de tudo, nao estou muito familiarizado com esse apache2 ainda, mas como dizem "vivendo e aprendendo".

 

Mais uma vez valeu http://forum.imasters.com.br/public/style_emoticons/default/thumbsup.gif

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.