Tumgik
#htaccess
Text
[solved] Use .htaccess to redirect HTTP to HTTPs
[solved] Use .htaccess to redirect HTTP to HTTPs
Using .htaccess to redirect HTTP to HTTPS is a crucial step in enhancing the security and confidentiality of a website. By enforcing the use of HTTPS, you can encrypt the data transmitted between the server and the client, which helps prevent eavesdropping, data tampering, and impersonation of the website. If you have a WordPress website and want to redirect HTTP to HTTPS, you can achieve this by…
View On WordPress
0 notes
darkstarnetwork43 · 6 months
Text
.htaccess: Invalid command '
If you’re getting this error in Magento: .htaccess: Invalid command ‘<IfVersion’, It usually means you’re missing the “mod_version” module in Apache. Install it whether via yum, or if you’re running cPanel/WHM – EasyApache4 -> Apache Modules and you should be good to go
View On WordPress
0 notes
getcodify · 7 months
Text
How to enable permalinks in WordPress - Ubuntu Apache2
To enable permalinks in WordPress while hosting on an Ubuntu server with Apache2, you can follow these steps: 1. Log into your server: Ensure that you have SSH access to your Ubuntu server. 2. Install WordPress: If you haven’t already, install WordPress on your server. You can follow the WordPress installation guide for Ubuntu:…
Tumblr media
View On WordPress
0 notes
kedama-mz · 8 months
Text
ローカルでwordpressのインポート容量を増やす
.htaccessに下記を追記して任意の数値に変更
php_value upload_max_filesize 85280M php_value post_max_size 90128M php_value memory_limit 256M php_value max_execution_time 800 php_value max_input_time 800
0 notes
htaccess-file · 1 year
Text
1 note · View note
mohmal4blog · 1 year
Text
0 notes
seogadgets · 1 year
Text
Htaccess 301 Redirect Generator is an online tool that generates 301 permanent redirects for .htaccess file. Create htaccess redirects for your site to redirect www to non-www and vice versa.
0 notes
ircwebnet · 1 year
Text
Modificare i Permalink in wordpress e redirect dei vecchi url
Modificare i Permalink in wordpress e redirect dei vecchi url
Cambiare permalink di wordpress con sito già avviato. In questo articolo oggi Tratteremo come Modificare i Permalink in wordpress in pochi semplici passi. Quanti di noi miseri e patetici mortali, ignoranti, ma smanettoni con tanta voglia di imparare a nostre spese, hanno avviato un sito o blog wordpress e ad un certo punto ormai tardi si sono resi conto di aver scelto un permalink non bello da…
Tumblr media
View On WordPress
0 notes
mycodesnippets · 1 year
Text
Have you ever created a website that has only access from specific IP Address? Or are you planning to create website service that can be access by specific IP Address?
0 notes
hazbon · 2 years
Text
0 notes
adityaypi · 2 years
Text
AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use ‘LimitInternalRecursion’ to increase the limit if necessary. Use ‘LogLevel debug’ to get a backtrace.
My htaccess file configuration <IfModule mod_deflate.c> # Compress HTML, CSS, JavaScript, Text, XML and fonts AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/vnd.ms-fontobject AddOutputFilterByType DEFLATE application/x-font AddOutputFilterByType DEFLATE…
View On WordPress
0 notes
Text
[solved] Internal redirect error with htaccess with WooCommerce
[solved] Internal redirect error with htaccess with WooCommerce
Internal redirect error with htaccess is a common issue in WordPress sites that are using WooCommerce. It occurs when a user tries to access a page or URL that has been redirected to a different URL because of an .htaccess file. This issue can lead to poor user experiences, and therefore, needs to be fixed promptly. To start with, .htaccess is a configuration file used by Apache web servers to…
View On WordPress
0 notes
blogdeprogramacion · 2 years
Text
Acelerar tu sitio web con htaccess
Acelerar tu sitio web con htaccess aparece primero en nuestro https://jonathanmelgoza.com/blog/acelerar-tu-sitio-web-con-htaccess/
Tumblr media
Un sitio web debe ser rápido y lograrlo no es nada fácil, intervienen muchos factores para poder lograrlo, pero hoy veremos uno de ellos, acelerar tu sitio web con htaccess y unas simples líneas a agregar en él.
Entre los muchos factores del posicionamiento web tenemos la velocidad de una web.
Además de ser importante para el posicionamiento de nuestra web, también lo es importante en usabilidad.
Nadie va a esperar 10 segundos a que tu web cargue si puede ir hacia atrás e ingresar a otra página.
Ahora bien, para mejorar nuestra velocidad de acceso, tenemos que hacer varias cosas.
Hoy hablaremos sobre acelerar tu sitio web con htaccess, con algunas modificaciones en este archivo nuestra web irá mucho más rápido.
En casi cualquier cuenta de hosting podremos encontrar este archivo en nuestro servidor o de lo contrario podremos crearlo nosotros mismos.
Antes de continuar vamos a hablar un poco sobre este archivo y donde podrás encontrarlo.
¿Qué es un archivo htaccess?
Un archivo htaccess es un archivo de configuración para servidores web Apache.
Contiene directivas de como debe funcionar nuestro servidor, por lo que es importante aprender a modificarlo.
Debemos de tener en cuenta que una mala configuración puede hacer que tu sitio no esté disponible temporalmente, así que ten cuidado.
En este archivo podremos indicar que puede o no hacer un visitante, así como el comportamiento del servidor respecto a las conexiones entrantes.
El archivo lo podremos encontrar en la raíz principal de nuestra web, aunque realmente podemos agregarlo en cualquier carpeta y modificar el comportamiento de ese nivel.
Si no ves el archivo, asegúrate de establecer que quieres visualizar archivos ocultos, si aun así no lo ves entonces podrás crearlo (.htaccess).
Cachear el contenido de nuestra web
Lo primero que vamos a agregar serán unas líneas para indicar cuando es que el contenido de nuestra web expira.
Contenido como imágenes, css, javascript, fuentes, audio o video tendrán una fecha de expiración.
Con esto nuestros visitantes bajarán estos archivos una vez y luego ya no hasta su fecha de expiración.
Ahora, la segunda vez que ingresen, ya no descargaran todo nuestro sitio, sino solo unos cuantos archivos.
<IfModule mod_expires.c> ExpiresActive On ExpiresByType text/css "now plus 1 week" ExpiresByType application/javascript "now plus 1 week" ExpiresByType application/x-javascript "now plus 1 week" ExpiresByType image/bmp "now plus 1 month" ExpiresByType image/gif "now plus 1 month" ExpiresByType image/jpeg "now plus 1 month" ExpiresByType image/jp2 "now plus 1 month" ExpiresByType image/pipeg "now plus 1 month" ExpiresByType image/png "now plus 1 month" ExpiresByType image/svg+xml "now plus 1 month" ExpiresByType image/tiff "now plus 1 month" ExpiresByType image/x-icon "now plus 1 month" ExpiresByType image/ico "now plus 1 month" ExpiresByType image/icon "now plus 1 month" ExpiresByType text/ico "now plus 1 month" ExpiresByType application/ico "now plus 1 month" ExpiresByType image/vnd.wap.wbmp "now plus 1 month" ExpiresByType application/x-font-ttf "now plus 1 week" ExpiresByType application/x-font-opentype "now plus 1 week" ExpiresByType application/x-font-woff "now plus 1 week" ExpiresByType font/woff2 "now plus 1 week" ExpiresByType image/svg+xml "now plus 1 week" ExpiresByType audio/ogg "now plus 1 month" ExpiresByType application/ogg "now plus 1 month" ExpiresByType audio/basic "now plus 1 month" ExpiresByType audio/mid "now plus 1 month" ExpiresByType audio/midi "now plus 1 month" ExpiresByType audio/mpeg "now plus 1 month" ExpiresByType audio/mp3 "now plus 1 month" ExpiresByType audio/x-aiff "now plus 1 month" ExpiresByType audio/x-mpegurl "now plus 1 month" ExpiresByType audio/x-pn-realaudio "now plus 1 month" ExpiresByType audio/x-wav "now plus 1 month" ExpiresByType application/x-shockwave-flash "now plus 1 month" ExpiresByType x-world/x-vrml "now plus 1 month" ExpiresByType video/x-msvideo "now plus 1 month" ExpiresByType video/mpeg "now plus 1 month" ExpiresByType video/mp4 "now plus 1 month" ExpiresByType video/quicktime "now plus 1 month" ExpiresByType video/x-la-asf "now plus 1 month" ExpiresByType video/x-ms-asf "now plus 1 month" </IfModule>
Comprimir el contenido de nuestra web
Otro factor importante que vamos a tocar es la compresión.
Generalmente, se envía el contenido sin comprimir, pero con estas líneas vamos a intentar comprimir con gzip nuestro contenido.
Si no fuera posible comprimir con gzip, entonces utilizaremos deflate.
<ifModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_include file .(html?|txt|css|js|php)$ mod_gzip_item_include handler ^cgi-script$ mod_gzip_item_include mime ^text/.* mod_gzip_item_include mime ^application/x-javascript.* mod_gzip_item_exclude mime ^image/.* mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* </ifModule> AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/x-javascript
Ahora te toca hacer pruebas y comprobar que tu sitio funciona de forma correcta.
Si notas un problema, prueba eliminando alguna de estas secciones.
Deberíamos de notar un cambio desde la primera vez que carguemos nuevamente nuestra web.
Aunque el mayor cambio lo deberíamos ver al cargar nuestra web por segunda vez, ya que los archivos cacheados ya no se pedirán nuevamente.
Ya antes hemos hablado de como mejorar la velocidad de tu web, pero este artículo está más enfocado al archivo htaccess.
Date una vuelta por ese artículo para conocer más técnicas de optimización web.
Si esta información sobre acelerar tu sitio web con htaccess te ha sido de utilidad, no olvides compartirla en tus redes sociales y dejarnos un comentario en la sección de abajo, si tienes cualquier duda relacionada con el tema de hoy, será un placer ayudarte.
¡Hasta luego!
0 notes
simplyaskfellowplural · 5 months
Text
General Guide 2:
"How to be Accessible in Plural Resources?"
Idea from 💙 - Created and written by 🖤 (He/Him)
For this Guide, we'll be talking about organizing your Simply plural, Pluralkit, or any other bio information, along with member information, and being accessible when using aesthetic symbols to make borders, or even aesthetic fonts to make things look pretty.
Very often systems forget about accessibility when it comes to making their information readable and understandable, and while some people might find it difficult or might clash with their visual wants, this clashes extremely harshly for systems and singlets who use screen readers if they're visually impaired, or have visual processing issues. We personally use a screen reader nearly 80% of the time, while it has to be activated. That's for really long paragraphs (like they take up the entire screen or almost half of it) or even just a small 3-4 sentences can be a bit of a challenge for us to stick to reading.
Below is a miniature list on how this guide will be formatted
What is considered inaccessible for screen readers and what would be considered visually cluttered?
Why are these aesthetic symbols so unreadable with screen readers? Why is it important to make my members/information accessible?
What are good alternatives to making my information readable, while also getting my aesthetic wants fulfilled?
Tumblr media
"What is considered inaccessible for screen readers and what would be considered visually cluttered?"
There are specific things that can be visually cluttered, as well as inaccessible to a screen reader.
While in some cases it can be one of the same, something visually very cluttered can usually be very non screenreader friendly.
Something being extremely visually cluttered can look like a bunch of random symbols back to back, especially symbols that don't match each other or aren't helping create balance. It's hard to give a good example without actively using other people's templates that might seem cluttered. But it's generally a good practice within using symbols, small amounts are good, large amounts are only if you're able to balance it out appropriately with the text, and with other information. If anyone reading this has a more straightforward example of crowded and cluttered templates and uses of aesthetic symbols do share!
Another area of something being too cluttered is walls and walls of text. And no punctuation. Having hard stops, soft stops or just generally using any punctuation can make your text and Information go from hard to comprehend and even read, to easy to understand. As well as helping out screenreaders read something out loud and speak relatively naturally.
Now, within this, let's talk about screenreaders and how they aren't able to process aesthetic fonts and such. Some are, but this is an example of what some Aesthetics sound depending on your screenreader/voiceover. For our screenreader for Android, ours skips over and doesn't even read some fonts, and or can't even find the actual text.
Tumblr media
"Why are these aesthetic symbols so unreadable with screen readers? Why is it important to make my members/information accessible?"
Generally, some of these symbols and fonts are generally either unreadable and the screenreader doesn't even see text, or, they're extremely readable to where it reads all the symbols' independent properties. For our screenreader, a lot of symbols are simple, but with a lot of templates, they use the same repeat symbols, which visually it is very nice, but hearing: "Flower dark symbol This is our page flower dark symbol. Downward right curved arrow age - 18 downward right curved arrow gender - female..."
And so on, meanwhile it looks like this:
❀ This is our page ❀
↳ Age - 18
↳ Gender - Female
It's generally important to recognize if you're on the Internet, people who use screenreaders will interact with your content or even if you're friends with a lot of people or acquaintances, screenreaders are important! Especially when trying to convey certain important information that you yourself might deem important. Having your member information on generally any site you use accessible to at least being understood is important. Alt text is something not established on certain platforms but you can still add your own version of alt text (alternative text), especially for pictures and videos.
For us, the amount of friends we have on Simply Plural that use aesthetics is plenty, but some of their aesthetics can be impossible to be read by the screenreader we use, or just generally impossible to read visually. Where letters are curved or shaped and manipulated in such a way it's difficult to read. This is between reading a member's name, vs. reading their extremely important interaction status.
Tumblr media
"What are good alternatives to making my information readable, while also getting my aesthetic wants fulfilled?"
A good starting place is to seek out aesthetic symbols that are not language based! This means not using な, or even other symbols from other languages as "cute marks". Here's a good place to find a bunch of assorted non-language based symbols!
Other good things to do when creating templates, or anything with aesthetic like symbols or fonts:
Practice in a notes section or private areas and create a practice template with your desired symbols. Try to remember if possible less is better depending on your needs!
Try activating your primary or even other devices screenreader/voice over! Have it read aloud your text/template to you. Try it on multiple devices or even ask others online to use their screenreader to read it, see how it reads the template.
Practice understanding accessibility devices relating to how the Internet works. Like alt text for images and videos. The amount of times we've been so sad when our favorite type of comic doesn't add alt text to their images..
Try to think ahead of what you want to say or explain, type exclusively and don't rush it!
Ask questions! Be open to answers! If you ask if something is accessible to someone or multiple people, and majority say no, process it and make it more accessible!
"Why should I use other devices?": Because not all screenreaders read the same! Some fully read everything including punctuation, some can't read certain symbols correctly like € or ≈. Not all screenreaders will read exactly how our phone reads, and not all screenreaders will read exactly like your computer might.
Tumblr media
Ending Notes
While we feel like we could have done better on this guide, we truly wanted to at least get a conversation started in some way! At least on our page. We definitely covered what we truly wanted to, which was the inaccessible nature of aesthetic symbols and fonts and screenreaders. But we do have a lot more to go within understanding other accessibility devices. If anyone would like to pitch in and offer more points to this or even other tips, please feel free to!
For other Guides for Plural Apps / Websites / Resources, check out our List!
Tumblr media
8 notes · View notes
hostrippleswebhosting · 4 months
Text
What Is a 404 Error Code? How They Happen and Why You Should Fix Them
Basically, in this article, we are going to see what is 404 error code, so before going into this let’s understand what is error code. Error code is nothing but a numerical number assigned to known errors which can occur while debugging, running or executing the application/website (basically program code). This can happen due to n-number of reasons, it could be server resources,…
Tumblr media
View On WordPress
0 notes
om-gay · 4 months
Text
Plan of the Day - BBS Things
Photo de Gabriel Vasiliu sur Unsplash Today I’m trying to find motivation to leave my bed and honestly, both cats are here with me and it is warm so this is a real struggle. Samuel L Catson casually just cleaning himself I’ve just run out of the world’s best discount cola and I’m contemplating taking the two hour roundtrip up to the supermarket to get some of that fake sweet for pennies, which…
Tumblr media
View On WordPress
0 notes