aquaballoon

Wordpress - Permalink Settings

May 29th, 2014
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.51 KB | None | 0 0
  1. // Apache Server
  2. localhost:10000
  3. Apache Webserver -> Global configuration -> Configure Apache Modules -> "rewrite" Enabled
  4.  
  5. $ nano /home/user/www/wordpress_directory/.htaccess
  6. <IfModule mod_rewrite.c>
  7. RewriteEngine On
  8. RewriteBase /wordpress_directory/
  9. RewriteRule ^index\.php$ - [L]
  10. RewriteCond %{REQUEST_FILENAME} !-f
  11. RewriteCond %{REQUEST_FILENAME} !-d
  12. RewriteRule . /wordpress_directory/index.php [L]
  13. </IfModule>
  14.  
  15. //change mode to writable; 666 = rw rw rw
  16. $ chmod 666 /home/user/www/wordpress/.htaccess
Advertisement
Add Comment
Please, Sign In to add comment