Comments on: Using Permalinks https://wordpress.org/support/article/using-permalinks/ Wed, 19 Oct 2022 10:13:09 +0000 hourly 1 https://wordpress.org/?v=6.2-alpha-54954 By: wert23sdfuy7 https://wordpress.org/support/article/using-permalinks/#comment-3324 Mon, 05 Sep 2022 22:46:28 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-3324 On a IIS 10 site, the permalinks include index.php for all except the Plain option. If this is a IIS restriction it would be helpful to mention the platform restriction.

There are several articles (including https://stackoverflow.com/questions/51057533/url-rewrite-iis-and-wordpress) that suggest the rewriting support is adequate to provide the Pretty behaviour.

Is this intended to be non-functional, or is my instance poorly configured?

This is not a support question as I will tolerate the lack of true rewriting. I think the documentation should indicate where the system behaves differently to the documentation to avoid the support overhead.

]]>
By: daed978hasan https://wordpress.org/support/article/using-permalinks/#comment-3320 Mon, 05 Sep 2022 11:23:34 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-3320 please can you check this file : there is abroblem in mu site when click on the linkes in menu it it request download like this : GZ file is an archive file compressed by the standard GNU zip (gzip) compression algorithm:
# BEGIN All In One WP Security
#AIOWPS_BASIC_HTACCESS_RULES_START

Require all denied

Order deny,allow
Deny from all

ServerSignature Off
LimitRequestBody 10485760

Require all denied

Order deny,allow
Deny from all

#AIOWPS_BASIC_HTACCESS_RULES_END
#AIOWPS_PINGBACK_HTACCESS_RULES_START

Require all denied

Order deny,allow
Deny from all

#AIOWPS_PINGBACK_HTACCESS_RULES_END
#AIOWPS_DEBUG_LOG_BLOCK_HTACCESS_RULES_START

Require all denied

Order deny,allow
Deny from all

#AIOWPS_DEBUG_LOG_BLOCK_HTACCESS_RULES_END
# END All In One WP Security

RewriteEngine On
RewriteCond %{HTTP_HOST} business-ray\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://business-ray.com/$1 [R,L]

#Please Note: Optimized WordPress is a Managed Platform offering, and this file has been configured to work under this managed platform. Changes to this file are not recommended and may impact our ability to provide support for your WordPress site.##

# BEGIN WPSuperCache

RewriteEngine On
RewriteBase /
#If you serve pages from behind a proxy you may want to change ‘RewriteCond %{HTTPS} on’ to something more sensible
AddDefaultCharset UTF-8
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{HTTPS} on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html.gz -f
RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html.gz” [L]

RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{HTTPS} !on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz -f
RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz” [L]

RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTPS} on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html -f
RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html” [L]

RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
RewriteCond %{HTTPS} !on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html -f
RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html” [L]

# END WPSuperCache

# BEGIN WordPress
# The directives (lines) between “BEGIN WordPress” and “END WordPress” are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.

RewriteEngine On
RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress

# php — BEGIN cPanel-generated handler, do not edit
# Set the “ea-php74” package as the default “PHP” programming language.

AddHandler application/x-httpd-ea-php74___lsphp .php .php7 .phtml

# php — END cPanel-generated handler, do not edit

# Begin AIOWPSEC Firewall

php_value auto_prepend_file ‘/home2/wamreqypq6j9/public_html/aios-bootstrap.php’

php_value auto_prepend_file ‘/home2/wamreqypq6j9/public_html/aios-bootstrap.php’

php_value auto_prepend_file ‘/home2/wamreqypq6j9/public_html/aios-bootstrap.php’

# End AIOWPSEC Firewall

]]>
By: aghaijlal939 https://wordpress.org/support/article/using-permalinks/#comment-3233 Sun, 14 Aug 2022 09:01:27 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-3233 Yes the article was helpful for a new user of wordpress

]]>
By: bidmead https://wordpress.org/support/article/using-permalinks/#comment-3157 Sat, 30 Jul 2022 20:47:00 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-3157 This page could be improved with an explanation of what will happen if you change your permalinks, say, from Ugly to Pretty. Do old posts get lost? Do external and/or internal references to old posts get munged?


Chris

]]>
By: jowallace https://wordpress.org/support/article/using-permalinks/#comment-3058 Wed, 06 Jul 2022 02:43:09 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-3058 Perhaps a a couple of real-life sample categories and tag and quick over view of why they would be useful.

]]>
By: Philip Adams https://wordpress.org/support/article/using-permalinks/#comment-3000 Wed, 22 Jun 2022 23:51:43 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-3000 You should explain page ID. I believe this might be the plain permalink or ugly permalink. But unless you confirm this I can only guess from what’s written on this page.

]]>
By: modelscoordinationil https://wordpress.org/support/article/using-permalinks/#comment-2963 Tue, 14 Jun 2022 15:05:20 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-2963 not clear what happens if you change the Permalink Type from plain to pretty for an existing site.
will the plain (?p=xxxx) still work ?

]]>
By: mygolfdiaries https://wordpress.org/support/article/using-permalinks/#comment-2725 Tue, 03 May 2022 14:47:47 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-2725 Hi, I would like to make my permalinks in such way that they reflect the main menu and sub-menu pages:

I have a menu:

Home
Game
– Rules
– Jargon
– Etiquette
Jokes
– Long
– Short
Blog
About
– About this blog
– About the author
– Contact us

And would like the permalink of the pages in the sub-directories to go like this:

mygolfdiaries.com/game/jargon

or

mygolfdiaries.com/jokes/long

So far I can’t get the permalink to set up in that way, all I managed to accomplish was:

mygolfdiaries.com/jokes-long/

Is what I’m asking possible, and if so, please let me know how to do it.

Thanks,

Fonzie

]]>
By: hassanali7 https://wordpress.org/support/article/using-permalinks/#comment-2723 Tue, 03 May 2022 10:57:37 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-2723 bad article

]]>
By: victoria229 https://wordpress.org/support/article/using-permalinks/#comment-2312 Fri, 25 Feb 2022 19:32:19 +0000 https://wordpress.org/support/?post_type=helphub_article&p=10867570#comment-2312 much too complicated for a beginner. You are using language that has not yet been taught.

]]>