Configurar el mod_rewrite en debian 5

Este post es muy especifico y solo tiene sentido si tienes un servidor apache2 que configurar

Desde la terminal checar si el servidor tiene el modulo con el comando

apache2ctl -M el modulo aparece en la lista con el nombre rewrite_module

Despues activar el mod_rewrite con este comando:
a2enmod rewrite

después en la dirección /etc/apache2/sites-available/default donde dice

AllowOverride None

cambiarlo a

AllowOverride All

después reiniciar el servidor apache

/etc/init.d/apache2 restart

después crear un archivo .htaccess en la capeta donde esta el sitio que puede ser uan dirección como esta:

/srv/www/nombredelsitio.com/public_html/.htaccess

en el archivo .htaccess puede ir una regla como la que sigue:

# Various rewrite rules.
<IfModule mod_rewrite.c>
  RewriteEngine on

  # If your site can be accessed both with and without the 'www.' prefix, you
  # can use one of the following settings to redirect users to your preferred
  # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
  #
  # To redirect all users to access the site WITH the 'www.' prefix,
  # (http://example.com/... will be redirected to http://www.example.com/...)
  # adapt and uncomment the following:
  # RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
  # RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
  #
  # To redirect all users to access the site WITHOUT the 'www.' prefix,
  # (http://www.example.com/... will be redirected to http://example.com/...)
  # uncomment and adapt the following:
  # RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
  # RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]

  # Modify the RewriteBase if you are using Drupal in a subdirectory or in a
  # VirtualDocumentRoot and the rewrite rules are not working properly.
  # For example if your site is at http://example.com/drupal uncomment and
  # modify the following line:
  # RewriteBase /drupal
  #
  # If your site is running in a VirtualDocumentRoot at http://example.com/,
  # uncomment the following line:
  # RewriteBase /

  # Rewrite URLs of the form 'index.php?q=x'.
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>

Pongo las ligas de donde saque esta información:

http://drupal.org/node/43783#comment-1402740

http://jonashagmar.blogspot.com/2009/03/i-managed-to-find-out-how-to-enable.html

http://drupal.org/node/11184
 

Categorias
Versión

Añadir nuevo comentario

El contenido de este campo se mantiene privado y no se mostrará públicamente.

HTML Restringido

  • Etiquetas HTML permitidas: <a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id>
  • Saltos automáticos de líneas y de párrafos.
  • Las direcciones de correos electrónicos y páginas web se convierten en enlaces automáticamente.