Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/245.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
.htaccess,收件箱问题,smarty php 收件箱系统_Php_.htaccess_Smarty - Fatal编程技术网

.htaccess,收件箱问题,smarty php 收件箱系统

.htaccess,收件箱问题,smarty php 收件箱系统,php,.htaccess,smarty,Php,.htaccess,Smarty,第三方物流区 RewriteRule ^inbox/requests/friends inbox.php?friends=view [L] # Friend Requests RewriteRule ^inbox/requests/groups inbox.php?groups=view [L] # Group Requests RewriteRule ^inbox/comments/video inbox.php?vcomms=view [L]

第三方物流区

RewriteRule ^inbox/requests/friends inbox.php?friends=view [L]          # Friend Requests
RewriteRule ^inbox/requests/groups inbox.php?groups=view [L]            # Group Requests
RewriteRule ^inbox/comments/video inbox.php?vcomms=view [L]             # Video Comments
RewriteRule ^inbox/comments/profile inbox.php?comms=view [L]            # Profile Comments
RewriteRule ^inbox/compose/([^/]*)$ inbox.php?compose=new&to=$1 [L]     # Compose Message
RewriteRule ^inbox inbox.php?private=view [L]                           # Main Inbox

出于某种原因,当我点击好友请求链接时,它只会停留在/收件箱/区域,在那里显示我的PM。。。。。。。不幸的是,我不知道这个问题。

您确定没有从inbox.php重定向吗?friends=查看到/inbox/?已修复,不用担心
{if $smarty.get.compose ne ""}<a href="{$site_url}/inbox/compose/"><li class="current_page_item"><b>New Message</b></li></a>
{else}<a href="{$site_url}/inbox/compose/"><li><b>New Message</b></li></a>{/if}

{if $smarty.get.private ne ""}<a href="{$site_url}/inbox"><li class="current_page_item">Inbox ({$total_notifications_inbox})</li></a>
{else}<a href="{$site_url}/inbox"><li>Inbox ({$total_notifications_inbox})</li></a>{/if}

{if $smarty.get.friends ne ""}<a href="{$site_url}/inbox/requests/friends"><li class="current_page_item">Friend Requests ({$total_notifications_friends})</li></a>
{else}<a href="{$site_url}/inbox/requests/friends"><li>Friend Requests ({$total_notifications_friends})</li></a>{/if}

{if $smarty.get.groups ne ""}<a href="{$site_url}/inbox/requests/groups"><li class="current_page_item">Group Requests ({$total_notifications_inbox})</li></a>
{else}<a href="{$site_url}/inbox/requests/groups"><li>Group Requests ({$total_notifications_groups})</li></a>{/if}

{if $smarty.get.vcomms ne ""}<a href="{$site_url}/inbox/comments/video"><li class="current_page_item">Video Comments ({$total_notifications_vcomms})</li></a>
{else}<a href="{$site_url}/inbox/comments/video"><li>Video Comments ({$total_notifications_vcomms})</li></a>{/if}

{if $smarty.get.comms ne ""}<a href="{$site_url}/inbox/comments/profile"><li class="current_page_item">Channel Comments ({$total_notifications_comms})</li></a>
{else}<a href="{$site_url}/inbox/comments/profile"><li>Channel Comments ({$total_notifications_comms})</li></a>{/if}