Guest User

Untitled

a guest
Dec 29th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <Directory /var/www/html/msridar.com/public_html>
  2. Require all granted
  3. RewriteEngine on
  4. RewriteBase /
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond %{REQUEST_FILENAME} !-d
  7. RewriteCond %{REQUEST_URI} !=/favicon.ico
  8. RewriteRule ^ index.php [L]
  9. </Directory>
  10. <VirtualHost *:80>
  11. # The ServerName directive sets the request scheme, hostname and port that
  12. # the server uses to identify itself. This is used when creating
  13. # redirection URLs. In the context of virtual hosts, the ServerName
  14. # specifies what hostname must appear in the request's Host: header to
  15. # match this virtual host. For the default virtual host (this file) this
  16. # value is not decisive as it is used as a last resort host regardless.
  17. # However, you must set it for any further virtual host explicitly.
  18. ServerName msridar.com
  19. ServerAlias www.msridar.com
  20. ServerAdmin webmaster@localhost
  21. DocumentRoot /var/www/html/msridar.com/public_html
  22.  
  23. # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
  24. # error, crit, alert, emerg.
  25. # It is also possible to configure the loglevel for particular
  26. # modules, e.g.
  27. #LogLevel info ssl:warn
  28.  
  29. ErrorLog /var/www/html/msridar.com/logs/error.log
  30. CustomLog /var/www/html/msridar.com/logs/access.log combined
  31.  
  32. # For most configuration files from conf-available/, which are
  33. # enabled or disabled at a global level, it is possible to
  34. # include a line for only one particular virtual host. For example the
  35. # following line enables the CGI configuration for this host only
  36. # after it has been globally disabled with "a2disconf".
  37. #Include conf-available/serve-cgi-bin.conf
  38. </VirtualHost>
  39.  
  40. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Add Comment
Please, Sign In to add comment