.htaccess:从URL中删除public

时间:2013-10-31 14:06:56

标签: regex apache .htaccess mod-rewrite

问题

如何从网址中删除 / public /

问题

当我访问/app/about时,网址更改为/app/public/aboutapp/user/2更改为/app/user.php/?username=2

设置

/ app / .htaccess

public 文件夹外的.htaccess包含:

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /app/

# remove /public/ from URL
RewriteCond %{REQUEST_URI} !/public [NC]
RewriteRule ^(.*)/?$ public/$1

这很好用。当我访问localhost:8888/app/时,它会加载 public 文件夹中的index.php文件。

/ app / public / .htaccess

public 文件夹中的.htaccess包含:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

# Add trailing slash
RewriteCond %{REQUEST_URI} ^(.+[^/])$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . %1/ [L,R=301]

# API Pages
# ------------------------------------------------------------
RewriteRule ^user/([a-z0-9]+)/?$ user.php?username=$1 [L,NC]


# Generic Pages
# ------------------------------------------------------------
RewriteRule ^about/?$ about.php [L,NC]

# Error Pages
# ------------------------------------------------------------
ErrorDocument 404 /404.php

相关URL-rewriting with index in a "public" folder

1 个答案:

答案 0 :(得分:1)

您的# Add trailing slash规则似乎有问题。您可以尝试将其评论出来进行测试。

<强> /app/.htaccess

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /app/

## Adding a trailing slash
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{THE_REQUEST} \s/+(.+?[^/])[?\s] [NC]
RewriteRule ^ /%1/ [L,R=301]

# remove /public/ from URL
RewriteCond %{REQUEST_URI} !/public/ [NC]
RewriteRule ^(.*?)/?$ public/$1 [L]