我的意思是我有一个页面,例如show_content.php
。该页面基于$_SERVER['QUERY_STRING']
如果用户输入例如www.domain/any-page
,我只想显示(访问)show_content.php
。
怎么做?
在.htaccess或httpd.conf中必须写RewriteRule ^([a-zA-Z0-9_-]+)$ show_content.php?$1
够了吗?
答案 0 :(得分:1)
在HTACCESS
中设置此项,以确保无人可以访问:
Order deny,allow
Deny from all
<Files "show_content.php">
Allow from all
</Files>
在你的重写规则之后:
RewriteRule ^([a-zA-Z0-9_-]+)$ show_content.php?$1