Advertisement
Advertisement
| 03.27.2008 at 04:08PM PDT, ID: 23275991 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 03.27.2008 at 04:18PM PDT, ID: 21226713 |
| 03.27.2008 at 04:27PM PDT, ID: 21226756 |
| 03.27.2008 at 04:31PM PDT, ID: 21226777 |
| 03.27.2008 at 04:48PM PDT, ID: 21226857 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: |
<VirtualHost 12.123.123.321:80 >
ServerAdmin webmaster@mydomain.com
ServerName test2.mydomain.com
DocumentRoot /home/user
ErrorLog /var/log/httpd/testmydomain.com-error_log
CustomLog /var/log/httpd/testmydomain.com-access_log combined
ScriptAlias /cgi-local /home/user/cgi-local
ScriptAlias /cgi-secure /home/user/cgi-secure
ScriptAlias /cgi-upload /home/userup/cgi-local
#for people that get snoopy
Alias /WEB-INF /home/user
SetOutputFilter DEFLATE
#this is defalte debug info
DeflateFilterNote Input input_info
DeflateFilterNote Output output_info
DeflateFilterNote Ratio ratio_info
LogFormat '"%r" %{output_info}n/%{input_info}n (%{ratio_info}n%%)' deflate
CustomLog /var/log/httpd/deflate_log deflate
JkMount /*.jsp worker1
JkMount /servlet/* worker1
#----------------------------------------------------
#Rewrite directories -
#----------------------------------------------------
RewriteEngine On
RewriteLog /var/log/httpd/rewrite.log
RewriteLogLevel 2
RewriteRule main.html - [F]
#a
RewriteCond %{REQUEST_URI} !^[a-zA-Z]/
RewriteCond %{REQUEST_URI} !^/aboutus.html
RewriteCond %{REQUEST_URI} !^/aboutus_sp.html
RewriteCond %{REQUEST_URI} !^/albums
RewriteRule ^/a([^/]+)/?(.*) /a/a$1/$2 [L]
#b
RewriteCond %{REQUEST_URI} !^[a-zA-Z]/
RewriteCond %{REQUEST_URI} !^/bbs
RewriteRule ^/b([^/]+)/?(.*) /b/b$1/$2 [L]
#c
RewriteCond %{REQUEST_URI} !^[a-zA-Z]/
RewriteCond %{REQUEST_URI} !^/cgi-local
RewriteCond %{REQUEST_URI} !^/cgi-secure
RewriteCond %{REQUEST_URI} !^/css/
RewriteRule ^/c([^/]+)/?(.*) /c/c$1/$2 [L]
//*
middle stuff deleted. Looks like the above
*//
Header append P3P 'CP="NON DSP COR ADM TAI NOR STA"'
</VirtualHost>
|
| 03.27.2008 at 06:15PM PDT, ID: 21227217 |