在index.php中,我包含了一个页面,即“示例页面”。
网址看起来像-"localhost.com/index.php?page=samplepage.php",
使用htaccess,我将网址更改为-localhost.com/samplepage
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [NC,L]
RewriteRule ^([a-zA-Z0-9-]+)$ index.php?page=$1
RewriteRule ^([a-zA-Z0-9-]+)/$ index.php?page=$1
现在的问题是我无法访问在samplepage.php上编码的获取请求
不使用httaccess,它看起来像-localhost.com/skin/theme/samplepage.php?email=example@gmail.com
现在使用htaccess之后,我无法在samplepage.php上处理获取电子邮件的请求