我需要在我的页面中删除所有文本框中的自动完成功能,所以我给了<input name="txt_username" id="txt_username" type="text" value="" autocomplete="off" /></dd></dl>
但它不起作用有人知道吗?
我在我的php网站上使用了URL重写.我需要将所有未找到的页面重定向到即将到来的页面
请参阅我的.htaccess
文件代码
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ /$1 [R=permanent,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.+)$ $1.php [L,QSA]
ErrorDocument 404 /errors/commingSoon.php
Run Code Online (Sandbox Code Playgroud)
但当我浏览无效页面时,其结果是
Not Found
The requested URL /komet-india/Houseboat.html was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Run Code Online (Sandbox Code Playgroud)
我的代码是否错误?
请帮我
我有一个web php网站.我想在用户浏览我的网站(主页)时在弹出式div上显示一条消息.我只需要在浏览器中第一次显示该消息.有人知道吗?