Very easy to Google it dharis. Suggest you do searches on it. You could start with this search:dharis01 said:I'm newbie here, I need help. I just tried to get experience in CentOs 7, I want to learn more to increase my ability.
I have tried, NginX and Apache, I got some error. Anyone explaint to me, what defferent Apache and Nginx, and whichone better?
Difference between Nginx and Apache
if you can make permalink / url rewrite in apache only whith this htaccess, you will easy to make permalink in nginxjakarta said:There is a good reason beetween apache or Nginx .
Apache is Good but this is need more resource . I like Nginx but i still learned about this ( url_rewrite and other about it)
RewriteEngine on
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
kokakoda said:They're both good in their own way.
Like smalpierre said, Apache's the 'standard' and you'll find plenty of docs on it, although it's maybe overkill depending on your use case. lighttpd is similar but much less taxing on your system.
nginx is /fast/ and is great for serving up static content, but the syntax can be confusing if you're mostly used to the Apache style.
If you can, learn both. It's common to set up nginx in front of Apache so you get the best of both worlds.
...and I just realised I pretty much repeated what was said 2 posts ago. oops :blush: Leaving it anyway, consider it my +1.