我有一个网站例如
www.abc.com在godaddy主持“abc”目录名称。
我有这个htacess设置
Options +FollowSymlinks
# Prevent Directoy listing
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/.]+)$ description.php?id=$1 [QSA]
</IfModule>
当我点击像
这样的链接时www.abc.com/123035/Four_Seasons_Hotel_Istanbul_at_Sultanahmet
我有这个错误。
The requested URL /abc/123035/Four_Seasons_Hotel_Istanbul_at_Sultanahmet was not found on this server.
此外,尝试使用ErrorDocument处理请求时遇到404 Not Found
错误。
可以解决什么问题?