centos下wordpress的若干问题。

 

Wordpress: .htaccess file won’t work with Apache

 

  
  
  
  
  1. # BEGIN WordPress 
  2.  
  3. RewriteEngine On 
  4. RewriteBase / 
  5. RewriteCond %{REQUEST_FILENAME} !-f 
  6. RewriteCond %{REQUEST_FILENAME} !-d 
  7. RewriteRule . /index.php [L] 
  8.  
  9.  
  10. # END WordPress 

 

 

  
  
  
  
  1. <VirtualHost *:80> 
  2.         ServerAdmin [email protected] 
  3.  
  4.         DocumentRoot /var/www/ 
  5.  
  6.         <Directory /> 
  7.                 Options FollowSymLinks 
  8.                 AllowOverride All 
  9.         </Directory> 
  10.         <Directory /var/www/> 
  11.                 Options Indexes FollowSymLinks MultiViews 
  12.                 AllowOverride All 
  13.                 Order allow,deny 
  14.                 allow from all 
  15.         </Directory> 
  16. .... 

 

你可能感兴趣的:(centos,wordpress,职场,休闲)