Tagged Questions
0
votes
0answers
4 views
Plesk to Webmin - reconcile/unite vhosts setting from the former to the latter [CentOS 6.3]
So I decided to switch from Plesk to Webmin.
Normally in Plesk, when I add a new domain name, it would auto generate a document root under /var/www/vhosts/domain_name/
Now moving to Webmin, in a ...
0
votes
1answer
26 views
Can I redirect the http request towards an old folder to the homepage using .htaccess file?
I have to following situation: I had an old blog that was made using Joomla (this blog was indexed well enough by search engines). For some problems I delete it and I have create it again using ...
0
votes
0answers
94 views
htaccess doesnt work in subfolder
I'm using xampp with apache on my windows machine.
My directory structure is:
C:/xampp/htdocs
---------------/Sync
--------------------/ProtectedFolderA
...
1
vote
2answers
139 views
Have UserDir enabled but also want to rewrite url if called differently
I am setting up a new server for our users to use have have personal webspace on. I have in my httpd.conf of apache the directives for UserDir as follows
UserDir disabled root
UserDir public_html
...
1
vote
0answers
28 views
Which webserver to use for multiple sites? [closed]
Which webserver should I use if I'm going to host about 30 sites and all are using Wordpress. Each site receives about 1k+ visitors daily. Which webserver should I use apache or nginx? I only have 1GB ...
2
votes
2answers
112 views
clean urls issue using .htaccess in php project
I am working on a php laravel project. I am currently facing issues with .htaccess file. I have following .htaccess
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /
...
2
votes
1answer
89 views
Stop Apache serving filetypes
Preferably using .htaccess files, though .conf files are an option, is there any way to stop Apache serving certain filetypes?
For example, .db shouldn't be served for obvious reason (privacy and ...
1
vote
2answers
128 views
How can I make a webmail URL available from any hosted domain?
I run Roundcube webmail on my VPS. At the moment, it is only accessible from one virtual server hosted on the server, unless a separate Roundcube installation is created for other virtual servers. I ...
1
vote
3answers
843 views
Nginx or Apache for a VPS? [closed]
I consider myself to be an inexperienced user/administrator when it comes to running my VPS. I can get by with a few CLI commands, I can set up Webmin and I can set up Yum repos, but beyond the very ...
3
votes
2answers
416 views
Good Book for Managing a Linux Web Server?
I'm being thrust into the role of managing my own web server. I will have access to some managed support, but I need a comprehensive resource I can turn to that covers: command line basics, apache and ...
0
votes
4answers
3k views
Chmod 777 to a folder and all contents on Apache web server
I have just got new hosting for my website and I have a directory /www which I put all my website files within and a folder in that directory called 'store'.
Within 'store' is several files and ...
1
vote
1answer
467 views
Directory access control with Apache: do I need to use a specific .htaccess?
I have an Apache webserver, and in the Apache configuration, I have
Alias /backups "/backups"
<Directory "/backups">
AllowOverride None
Options Indexes
Order allow,deny
Allow ...
0
votes
1answer
233 views
Changing mod_rewrite “file exists” checks to not see directories as files
I have the following mod_rewrite rules set up:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
This works fine, allowing me to ...