gs_s
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Only Accessible to PermalinksAlso I found a useful plugin called redirection which is configurable to restrict accesses to queried urls. But like the .htaccess method mentioned in the above post, even when I redirect /?page_id=(.*?) to a 404 Error page, still AutoPagerize reads them despite a direct access gets a 404 page.
I’ll close this topic as resolved since the initial question was answered. I may post a new thread regarding Autopagerize. Thank you so much.
Forum: Fixing WordPress
In reply to: Only Accessible to PermalinksThanks again.
Based on your code, I tried this one.
RewriteCond %{QUERY_STRING} ^page_id [NC] RewriteRule .* - [F,L]
When I directly access to the queried urls, the browser responses the page is forbidden.
However, AutoPagerize just reads those pages. I don’t get what’s going on inside the firefox plugin. It seems I should ask the developper of AutoPagerize.
Thanks anyways.
Forum: Themes and Templates
In reply to: Keep Height of Content Body#wrapper { background: #fff; margin-top: 20px; padding: 0 20px; min-height:800px; }
Somehow this did not work so I tried the following and it worked! I would not be able to do this without your help. I really appreciate it. Thank you so much.
#wrapper { background: #fff; margin-top: 20px; padding: 0 20px; } #main { min-height:800px; }
Forum: Plugins
In reply to: Global Disable/Enable Sidebar PluginI see. I’ll go with the workarounds then.
Thanks anyways, for taking time for the response.
Forum: Themes and Templates
In reply to: Keep Height of Content BodyThanks for the response, alchymyth.
This is the link,
Short Page
https://gsstudio.comeze.com/wordpress/?page_id=7
Long Page
https://gsstudio.comeze.com/wordpress/?page_id=9I don’t mind a long post get’s the length to be long. I just want a short page not to be too short and keep a certain length.
Forum: Fixing WordPress
In reply to: Only Accessible to PermalinksI have researched how I can use .htaccess rules to achieve my need. However, most of pages I found only tell how to redirect or how to ban some IPs, not how to disable certain urls.
I thought about redirecting to a 404 page but Auto-Pagerize also read 404 pages if the urls exist. So it doesn’t work. I need to block the WordPress default queried urls permanently.
Would you mind giving some simple examples?